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请求的两种姿势的主要内容,如果未能解决你的问题,请参考以下文章

Spring Cloud Feign的两种使用姿势

java模拟简易Http的get和post请求

接口测试的两种方法

php如何防止图片盗用/盗链的两种方法(转)

BZOJ 3224 普通平衡树 平衡树的两种姿势:SBT,splay

Mybatis一对多查询的两种姿势,你值得拥有(收藏就完事了)