php curl
Posted 飞翔的贺兰猪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php curl相关的知识,希望对你有一定的参考价值。
/**
* @param string $url
* @param array $url_param
* @param array $body_param
* @param bool $is_post
* @return mixed
*/
public function sendHttpRequest($url,$url_param = null,$body_param = null,$is_post = true) { if($url_param){ $url_param = ‘?‘.http_build_query($url_param); } if($body_param){ $body_param = json_encode($body_param); } $ch = curl_init($url.$url_param); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); if($is_post){ curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $body_param); } curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); $data = curl_exec($ch); curl_close($ch); return $data; }
以上是关于php curl的主要内容,如果未能解决你的问题,请参考以下文章
转:PHP中的使用curl发送请求(GET请求和POST请求)
CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段