mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2024-11-10 17:26:48 +08:00
add postData
This commit is contained in:
parent
660f186004
commit
376a3448b6
1 changed files with 22 additions and 0 deletions
|
@ -40,4 +40,26 @@ class Http
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
return $server_output;
|
return $server_output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static function postData($url, $array_post, $headers = [], $basic = null)
|
||||||
|
{
|
||||||
|
$headers[] = 'Content-Type: application/x-www-form-urlencoded';
|
||||||
|
$ch = curl_init();
|
||||||
|
curl_setopt($ch, CURLOPT_URL, $url);
|
||||||
|
curl_setopt($ch, CURLOPT_POST, 1);
|
||||||
|
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
|
||||||
|
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
|
||||||
|
curl_setopt($ch, CURLOPT_VERBOSE, false);
|
||||||
|
curl_setopt($ch, CURLINFO_HEADER_OUT, false);
|
||||||
|
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($array_post));
|
||||||
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
||||||
|
if (!empty($basic)) {
|
||||||
|
curl_setopt($ch, CURLOPT_USERPWD, $basic);
|
||||||
|
}
|
||||||
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||||
|
$server_output = curl_exec($ch);
|
||||||
|
curl_close($ch);
|
||||||
|
return $server_output;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue