我有一个 url,当从浏览器运行时它开始下载文件(ebup 或 pdf)因为 url 包含 uername 和密码我不能给我的客户这个 url 所以我必须创建一个文件到我的服务器 download.php 将使用 curl 下载文件。
假设网址是 www.myebookspartner.com/username/ebooks/password/1234/ebookid/12
当我尝试用 curl 调用这个 url 时,下载它没有开始(如果我运行表单浏览器,下载会立即开始)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, 1);
$server_output = curl_exec ($ch);
$info=curl_getinfo($ch);
curl_close ($ch);
curl_getinfo 返回
{
["url"]=the url"
["content_type"]=>
string(35) "application/epub+zip; charset=utf-8"
["http_code"]=>;
int(200)
["header_size"]=>
int(861)
["request_size"]=>
int(318)
["filetime"]=>
int(-1)
["ssl_verify_result"]=>
int(0)
["redirect_count"]=>
int(0)
["total_time"]=>
float(5,622246)
["namelookup_time"]=>
float(0,000764)
["connect_time"]=>
float(0,056946)
["pretransfer_time"]=>
float(4,8E-5)
["size_upload"]=>
float(0)
["size_download"]=>
float(0)
["speed_download"]=>
float(0)
["speed_upload"]=>
float(0)
["download_content_length"]=>
float(510415)
["upload_content_length"]=>
float(0)
["starttransfer_time"]=>
float(5,622168)
["redirect_time"]=>
float(0)
}
怎么做才能使用 curl 从我的文件中强制下载文件
谢谢