2

我的问题代码

<?php
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'http://www.tudou.com/programs/view/qyT7G6gVFSs');
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl , CURLOPT_NOBODY, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($curl);
curl_close($curl);
var_dump($data);

回应是

字符串(241)“HTTP/1.1 405 方法不允许服务器:Tengine/1.4.0 日期:星期六,2012 年 12 月 1 日 15:53:32 GMT 内容类型:文本/html;charset=GBK 内容长度:1085 连接:关闭 appSrv:itemview-app4-app_admin 变化:接受编码允许:GET “

那么我的正确代码是

<?php
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'http://www.tudou.com/programs/view/qyT7G6gVFSs');
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($curl);
curl_close($curl);
var_dump($data);

结果是字符串(313)“HTTP/1.1 302 临时移动服务器:Tengine/1.4.0 日期:星期六,2012 年 12 月 1 日 16:17:25 GMT 内容长度:0 连接:关闭 appSrv:itemview-app5-app_admin 变化: Accept-Encoding Pragma: No-Cache Cache-Control: no-cache, no-store 过期时间: Thu, 01 Jan 1970 00:00:00 GMT 地点: http://tv.tudou.com/

"

是的,它只是 CURLOPT_NOBODY,任何人都可以告诉我为什么?拜托!

4

2 回答 2

1

当您指定 CURLOPT_NOBODY 时,它实际上执行不同类型的请求CURLOPT_NOBODY 是否仍然下载正文 - 使用带宽 看起来您正在卷曲的服务器不支持这种类型的请求。

于 2012-12-01T16:26:26.717 回答
0

尝试做这样的事情:

            //cURL set options
            //cURL options array set
            $options = array(
                CURLOPT_URL => $this->URL,              #set URL address
                CURLOPT_USERAGENT => $this->UserAgent,  #set UserAgent to get right content like a browser
                CURLOPT_RETURNTRANSFER => true,         #redirection result from output to string as curl_exec() result
                CURLOPT_COOKIEFILE => 'cookies.txt',    #set cookie to skip site ads
                CURLOPT_COOKIEJAR => 'cookiesjar.txt',  #set cookie to skip site ads
                CURLOPT_FOLLOWLOCATION => true,         #follow by header location
                CURLOPT_HEADER => true,                 #get header (not head) of site
                CURLOPT_FORBID_REUSE => true,           #close connection, connection is not pooled to reuse
                CURLOPT_FRESH_CONNECT => true,          #force the use of a new connection instead of a cached one
                CURLOPT_SSL_VERIFYPEER => false         #can get protected content SSL
            );
            //set array options to object $curl
            curl_setopt_array($curl, $options);
于 2012-12-01T16:28:34.607 回答