以下是代碼:爲什麼我無法下載已經存在於服務器上的pdf文件?
define(ADMIN_ROOT,'/var/www/abc/pqr/web/control/');
$filename = $test_data['test_name'];
$flname = ADMIN_ROOT.'modules/tests/test_pdfs/'.$filename;
header("Content-Type: application/pdf");
header("Cache-Control: no-cache");
header("Accept-Ranges: none");
header("Content-Disposition: attachment; filename=\"" .$flname. ".pdf\"");
PDF文件已經存在在那邊目錄
/var/www/abc/pqr/web/control/modules/tests/test_pdfs/
而且它擁有所有權限assigned.But當我嘗試下載文件時,它的下載一些具有相同名稱的不同文件,但該文件不是可以打開的格式。總之,所需的文件沒有被下載。任何人都可以幫助我糾正我的問題嗎?