我開發一個代碼從服務器下載MP3文件。該代碼在舊服務器中工作,但不適用於新服務器。它顯示了0字節,當我嘗試下載一個精細在php下載文件不起作用
我發送通過HTTP POST methos下載鏈接
www.example.com/download.php?dlink=http://www.example.com/音樂/ sample.mp3
這是我事先用
ob_start();
if(isset($_REQUEST['dlink']))
{
$file = $_REQUEST['dlink'];
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
ob_flush();
感謝代碼
什麼是$文件這裏讀取文件($文件)? – Venu
$ file = $ _REQUEST ['dlink']; 我錯過了這一行,現在我添加了..請看看這個問題.... –
你想輸出文件,這是要獲取另一臺服務器?或者是位於該服務器中的文件? – Venu