|
...
|
...
|
@@ -61,7 +61,7 @@ if (!function_exists('http_post')) { |
|
|
|
* @param type $url
|
|
|
|
* @param type $post_data
|
|
|
|
*/
|
|
|
|
function http_post($url, $post_data, $header = [],$is_json = true)
|
|
|
|
function http_post($url, $post_data, $header = [],$is_json = true,$timeout = 60)
|
|
|
|
{
|
|
|
|
if (empty($header)) {
|
|
|
|
$header = array(
|
|
...
|
...
|
@@ -73,6 +73,7 @@ if (!function_exists('http_post')) { |
|
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
|
|
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
|
|
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
|
|
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
|
|
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
|
|
|
|
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)');
|
...
|
...
|
|