使用php cURL从文件头获取文件名 [英] With php cURL get filename from file header

查看:465
本文介绍了使用php cURL从文件头获取文件名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这个php cURL函数:

I have this php cURL function:

function curl_login($url,$data,$proxy,$proxystatus){
$fp = fopen("cookietlt.txt", "w");
fclose($fp);
$login = curl_init();
curl_setopt($login, CURLOPT_COOKIEJAR, "cookie.txt");
curl_setopt($login, CURLOPT_COOKIEFILE, "cookie.txt");
curl_setopt($login, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($login, CURLOPT_TIMEOUT, 40);
curl_setopt($login, CURLOPT_RETURNTRANSFER, TRUE);
if ($proxystatus == 'on') {
    curl_setopt($login, CURLOPT_SSL_VERIFYHOST, FALSE);
    curl_setopt($login, CURLOPT_HTTPPROXYTUNNEL, TRUE);
    curl_setopt($login, CURLOPT_PROXY, $proxy);
}
curl_setopt($login, CURLOPT_URL, $url);
curl_setopt($login, CURLOPT_HEADER, TRUE);
curl_setopt($login, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($login, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($login, CURLOPT_POST, TRUE);
curl_setopt($login, CURLOPT_POSTFIELDS, $data);
ob_start();      // prevent any output
return curl_exec ($login); // execute the curl command
ob_end_clean();  // stop preventing output

curl_close ($login);

unset($login);    
}                  
function curl_grab_page($site,$proxy,$proxystatus){
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
if ($proxystatus == 'on') {
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
    curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, TRUE);
    curl_setopt($ch, CURLOPT_PROXY, $proxy);
}
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.txt");
curl_setopt($ch, CURLOPT_URL, $site);
ob_start();      // prevent any output
return curl_exec ($ch); // execute the curl command
ob_end_clean();  // stop preventing output
curl_close ($ch);
}


curl_login('http://www.site.tdl/login.php','username=test&password=demo','','off');
curl_grab_page('http://www.site.tdl/1965.torrent','','off');

我需要从文件获取文件名( http://www.site.tdl/1965.torrent )头变为变量。

I need to get filename from file(http://www.site.tdl/1965.torrent) header into variable.

http:// www。 site.tdl / 1965.torrent 标题:

Content-Disposition: attachment; filename="Linux.Mint.torrent"
Content-Type: application/x-bittorrent
Content-Length: 4525

所以输出将是Linux.Mint。我怎样才能做到这一点?

So output will be Linux.Mint. How can I do that?

谢谢!

推荐答案

我知道这个问题,但我想澄清 CURLOPT_HEADERFUNCTION 一点,我发现php.net上的文档令人困惑。

I know this question is kind of old, but I'd like to clarify CURLOPT_HEADERFUNCTION a bit, I found the documentation on php.net to be confusing.

curl将发送header回调函数一次一个头。回调函数必须返回读取的字节数,否则curl将失败(并且请求将结束)

curl will send the header callback function one header at a time. The call back function must return the number of bytes read or else curl will fail (and the request will end)

curl_setopt($ch, CURLOPT_HEADERFUNCTION, "readHeader");

function readHeader($ch, $header)
{
     // read headers
    echo "Read header: ", $header;
    return strlen($header);
}

输出示例:

 Read header: HTTP/1.1 200 OK
    Read header: Server: nginx/0.8.32
    Read header: Date: Wed, 31 Mar 2010 14:23:18 GMT
    Read header: Content-Type: image/jpeg
    Read header: Content-Length: 886308
    Read header: Connection: close
    Read header: Accept-Ranges: bytes
    Read header: 

如果没有从readHeader返回,curl将在第一个标题

Without the return from readHeader, curl will end after the first header is sent.

这篇关于使用php cURL从文件头获取文件名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆