有一個代碼來下載的zip文件:我如何從外部根目錄訪問文件在PHP
$dl_path = './';
$filename = 'favi.zip';
$file = $dl_path.$filename;
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/zips');
header("Pragma: public");
header("Expires: 0");
header("Cache-Control:must-revalidate, post-check=0, pre-check=0");
header("Content-Type:application/force-download");
header("Content-Type:application/download");
header("Content-Disposition:attachment;filename=$filename ");
header("Content-Transfer-Encoding:binary ");
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
有根目錄/public_html
,該腳本在根目錄下執行。
/
目錄中有zip文件。
我正在嘗試使用$dl_path
作爲/
,但它不起作用。
請幫忙。
1.正確格式化您的代碼; 2.使用../作爲路徑移動到public_html –
3.檢查權限 –