php怎么编写https接口

主机教程 建站分享 2年前 (2022-09-13) 218次浏览

文章摘要:php怎么编写https接口

在php中使用curl库编写https接口,具体方法如下: function fetch_page($site […]

在php中使用curl库编写https接口,具体方法如下:

function fetch_page($site,$url,$params=false)

{

$ch = curl_init();

$cookieFile = $site . '_cookiejar.txt';

curl_setopt($ch, CURLOPT_COOKIEJAR, $cookieFile);

curl_setopt($ch, CURLOPT_COOKIEFILE,$cookieFile);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);

curl_setopt($ch, CURLOPT_HTTPGET, true);

curl_setopt($ch, CURLOPT_TIMEOUT, 4);

if($params)

curl_setopt($ch, CURLOPT_POSTFIELDS, $params);

curl_setopt($ch,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3');

curl_setopt($ch, CURLOPT_URL,$url);

$result = curl_exec($ch);

return $result;

}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:php怎么编写https接口
文章链接:http://www.7966.org/post/13853.html
转载请注明出处

喜欢 (0)