5

我在两个不同的服务器上使用这个脚本:

function curlGetFileInfo($url, $cookies="default"){
global $_config;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_COOKIEFILE, 'serverpath/cookies/'.$cookies.'.txt');
$data = curl_exec($ch);
curl_close($ch); 
if ($data === false) { 
    return 0;
}
//echo $data;   
$info['filename'] = get_between($data, 'filename="', '"');
$info['extension'] = end(explode(".",$info['filename']));
if (preg_match('/Content-Length: (\d+)/', $data, $matches)) {
  $info['filesize'] = (int)$matches[1];
}
return $info;
}

这些服务器具有相同的 PHP 版本和相同的 PHP-Curl 版本。这些是 curl 结果的两个不同标题:

工作一:

HTTP/1.1 302 发现日期:2012 年 6 月 12 日星期二 07:04:35 GMT 服务器:Apache/2.2.16 (Debian) X-Powered-By:PHP/5.3.3-7+squeeze13 过期:1981 年 11 月 19 日,星期四08:52:00 GMT 缓存控制:无存储,无缓存,必须重新验证,后检查 = 0,预检查 = 0 编译指示:无缓存位置: http ://stor1076.uploaded.to/ dl/b3411ded-0f45-4efc-b705-8c8ac89b5e41 变化:接受编码连接:关闭内容类型:文本/html HTTP/1.1 200 OK 服务器:nginx/1.0.5 日期:2012 年 6 月 12 日星期二 07:04:35 GMT Content-Type: video/x-msvideo Content-Length: 733919232 Last-Modified: Tue, 29 May 2012 15:10:07 GMT Connection: keep-alive Content-Disposition: attachment; filename="Saw.[Spanish.DVDRip].[XviD-Mp3].by.SDG.avi" 接受范围:字节

非工作一:

HTTP/1.1 302 发现日期:2012 年 6 月 12 日星期二 07:05:26 GMT 服务器:Apache/2.2.16 (Debian) X-Powered-By:PHP/5.3.3-7+squeeze13 过期:1981 年 11 月 19 日,星期四08:52:00 GMT 缓存控制:无存储,无缓存,必须重新验证,后检查 = 0,预检查 = 0 编译指示:无缓存位置: http ://stor1164.uploaded.to/ dl/22c3d242-365d-4e1e-b903-f1e2b81812c2 变化:接受编码连接:关闭内容类型:文本/html

Cookie 设置正常(通过登录),其他简单的 Curl 功能运行良好。

另外,我做了一个curl_getinfo($ch, CURLINFO_HTTP_CODE)并给了我这个结果:

工作一: 200

非工作一: 302

任何的想法?

4

2 回答 2

1

在工作中,您似乎正在运行 Apache 和nginx。您可以看到有两个 HTTP 响应:

HTTP/1.1 302 发现日期:2012 年 6 月 12 日星期二 07:04:35 GMT 服务器:Apache/2.2.16 (Debian) HTTP/1.1 200 OK 服务器:nginx/1.0.5

因此,您的设置有所不同。我不知道它们究竟是如何一起运行的,但这提供了一些见解并可能帮助您解决它: http: //kbeezie.com/view/apache-with-nginx/

于 2012-06-12T07:39:24.760 回答
1

好的,这是一个 open_basedir 问题。多谢你们。

于 2012-06-12T15:25:15.773 回答