我使用readfile来读取文件,但它不适用于URL路径。所以,我给了它物理路径。如何使用URL路径?
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename=\"" . basename($path) . "\"");
readfile($path);
答案 0 :(得分:0)
如果php.ini启用了名为
的选项allow_url_fopen=On
然后url基本路径将在readfile中工作,否则你将不得不使用fopen。
由于 阿米特