我想扩展我的问题 Read php file using php file and excel export
如果我在Firefox中打开以下PHP文件,它会显示一条弹出消息,询问保存Excel文件的位置。 如果我在谷歌浏览器中打开该文件,它会在我的下载(C:驱动器)文件夹中自动保存而不会有任何弹出窗口。
<?php
$read_file = readfile("my_export_file.php");
$file = 'test.xls';
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$file");
echo $read_file;
?>
我想要的是:
我该怎么做?