php模拟http请求的两种姿势
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php模拟http请求的两种姿势相关的知识,希望对你有一定的参考价值。
CURL
$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, self::$connectTimeout); curl_setopt($ch, CURLOPT_TIMEOUT, self::$socketTimeout); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $curl_errno = curl_errno($ch); $data = curl_exec($ch); curl_close($ch); if ($curl_errno >0) { return 0; }else{ return $data; }
$opts = array( ‘http‘ => array( ‘method‘ => "GET", ‘timeout‘ => self::$connectTimeout + self::$socketTimeout, ) ); $context = stream_context_create($opts); $data = @file_get_contents($url, false, $context); if($data){ return $data; }else{ return 0; }
本文出自 “我的PHP之路” 博客,请务必保留此出处http://phpme.blog.51cto.com/663593/1983875
以上是关于php模拟http请求的两种姿势的主要内容,如果未能解决你的问题,请参考以下文章