php curl cookie 写入失败
先上代码:functionhttp($url,$data='',$method='GET'){if(empty($this->cookie_file)){$this->c...
先上代码 : function http($url, $data='', $method='GET'){ if(empty($this->cookie_file)){ $this->cookie_file = tempnam("./temp", 'cookie'); #能生成文件 并有写入权限 } echo $this->cookie_file; $curl = curl_init(); // 启动一个CURL会话 curl_setopt($curl, CURLOPT_URL, $url); // 要访问的地址 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36"); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); // 使用自动跳转 curl_setopt($curl, CURLOPT_AUTOREFERER, 1); // 自动设置Referer #要提供的数据 if($method=='POST'){ echo $cookie_file; curl_setopt($curl, CURLOPT_POST, 1); // 发送一个常规的Post请求 if ($data != ''){ curl_setopt($curl, CURLOPT_POSTFIELDS, $data); // Post提交的数据包 } } curl_setopt($ch,CURLOPT_COOKIEFILE, $this->cookie_file); curl_setopt($ch,CURLOPT_COOKIEJAR, $this->cookie_file); curl_setopt($curl, CURLOPT_TIMEOUT, 30); // 设置超时限制防止死循环 curl_setopt($curl, CURLOPT_HEADER, 0); // 显示返回的Header区域内容 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); // 获取的信息以文件流的形式返回 $tmpInfo = curl_exec($curl); // 执行操作 curl_close($curl); // 关闭CURL会话 return $tmpInfo; // 返回数据 } 以上是源码,从抓包中可以看出,服务器有 发送set-cookie指令到客户端 如图,但我的cookie_file指定的 cookie文件里 却一直是空,永远是空。。。不知是什么原因造成这样的结果。。。。
展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询