如果我默认在文件名中命名它,我可以成功下载我的 microsoft word。但是如果我使用 $variables 来命名它。文档扩展名将是未知的。
样本:
$No = 1;
$Name = 'John';
$Test = 'Science';
//Download header
$document->save($doc);
header('Content-Description: File Transfer');
header('Content-Type: application/msword');
header("Content-Disposition: attachment; filename='$No_$Name_$Test.docx");
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($doc));
ob_clean();
flush();
readfile($doc);
因此,如果我将文件名重命名为变量。文件下载将没有 docx 扩展名。任何人都可以建议?
谢谢