php代碼正常工作,文件在Chrome的狀態欄下載。但它不顯示文件下載對話框,chrome自動下載文件。想要顯示文件下載對話框。嘗試不同的內容類型,但它沒有奏效。
粘貼下面未顯示文件對話框-php
<?php
header('Content-disposition: attachment; filename=index.html');
header('Content-type: text/plain');
readfile('index.html');
?>
php代碼正常工作,文件在Chrome的狀態欄下載。但它不顯示文件下載對話框,chrome自動下載文件。想要顯示文件下載對話框。嘗試不同的內容類型,但它沒有奏效。
粘貼下面未顯示文件對話框-php
<?php
header('Content-disposition: attachment; filename=index.html');
header('Content-type: text/plain');
readfile('index.html');
?>
我認爲這是一個特定的瀏覽器設置。你的代碼很好。你不能影響瀏覽器行爲 – leuchtdiode
非常感謝信息 – Arav