curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
//追踪返回..., 1);// POST数据
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); // POST参数
}...public static function request($url, array $headers = [], array $data = [], $type = \Requests::GET...response->body = '';
return $response;
}
}
}
复制代码
//业务代码
// www.cwl.gov.cn 请求头...options = [])
{
$response = \app\lucky\common\Http::request($url, $headers, $urlParams, 'GET