- 优化预先订单购物车信息列表的搜索功能,增加按店铺名称搜索 - 优化仓库订单列表的搜索条件,增加按订单ID搜索 - 修复仓库订单逻辑中获取订单类型的问题 - 在 API 控制器中添加 XpsdkPrintApi 服务的引用
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* 发送http的json请求
|
|
*
|
|
* @param $url 请求url
|
|
* @param $jsonStr 发送的json字符串
|
|
* @return array
|
|
*/
|
|
namespace Xpyun\service;
|
|
|
|
use Exception;
|
|
|
|
class HttpClient
|
|
{
|
|
public function http_post_json($url, $jsonStr)
|
|
{
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_POST, 1);// 发送一个常规的Post请求
|
|
curl_setopt($ch, CURLOPT_URL, $url);// 要访问的地址
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); // 对认证证书来源的检测
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, 30); // 设置超时限制防止死循
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonStr);
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
|
|
'Content-Type: application/json;charset=UTF-8',
|
|
'Content-Length: ' . strlen($jsonStr)
|
|
)
|
|
);
|
|
|
|
$response = curl_exec($ch);
|
|
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
|
if (curl_errno($ch)) {
|
|
throw new Exception(curl_error($ch));
|
|
}
|
|
curl_close($ch);
|
|
|
|
return array($httpCode, $response);
|
|
}
|
|
}
|
|
|
|
?>
|