?php
/**
* cURL請求工具類
*/
class CurlUtils {
private $ch;//curl資源對象
/**
* 構(gòu)造方法
* @param string $url 請求的地址
* @param int $responseHeader 是否需要響應(yīng)頭信息
*/
public function __construct($url,$responseHeader = 0){
$this->ch = curl_init($url);
curl_setopt($this->ch,CURLOPT_RETURNTRANSFER,1);//設(shè)置以文件流的形式返回
curl_setopt($this->ch,CURLOPT_HEADER,$responseHeader);//設(shè)置響應(yīng)頭信息是否返回
}
/**
* 析構(gòu)方法
*/
public function __destruct(){
$this->close();
}
/**
* 添加請求頭
* @param array $value 請求頭
*/
public function addHeader($value){
curl_setopt($this->ch, CURLOPT_HTTPHEADER, $value);
}
/**
* 發(fā)送請求
* @return string 返回的數(shù)據(jù)
*/
private function exec(){
return curl_exec($this->ch);
}
/**
* 發(fā)送get請求
* @return string 請求返回的數(shù)據(jù)
*/
public function get(){
return $this->exec();
}
/**
* 發(fā)送post請求
* @param arr/string $value 準備發(fā)送post的數(shù)據(jù)
* @param boolean $https 是否為https請求
* @return string 請求返回的數(shù)據(jù)
*/
public function post($value,$https=true){
if($https){
curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($this->ch, CURLOPT_SSL_VERIFYHOST, FALSE);
}
curl_setopt($this->ch,CURLOPT_POST,1);//設(shè)置post請求
curl_setopt($this->ch,CURLOPT_POSTFIELDS,$value);
return $this->exec();
}
/**
* 關(guān)閉curl句柄
*/
private function close(){
curl_close($this->ch);
}
}
$curl = new CurlUtils("https://api-cn.faceplusplus.com/facepp/v3/detect");//創(chuàng)建curl對象
$value = ['api_key'=>'4Y7GS2sAPGEl-BtQlNw5Iqtq5jGOn87z','api_secret'=>'oQnwwJhS2mcm4vflKvgm972up9sLN8zj','image_url'=>'http://avatar.csdn.net/9/7/5/1_baochao95.jpg','return_attributes'=>'gender,age,glass'];//準備post的值
echo $curl->post($value);//發(fā)送請求
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php curl用法總結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》及《PHP中json格式數(shù)據(jù)操作技巧匯總》