好傢伙我怎麼能在這裏文本文件的標題顯示的時間是我的代碼:我怎麼能對文本文件的標題顯示時間
<?php
header('Content-disposition: attachment; filename=test.txt');
header('Content-type: text/plain');
...
?>
我想要的文件的標題可以是這樣的TEST_八月30,2013.txt我希望有人能幫助我
好傢伙我怎麼能在這裏文本文件的標題顯示的時間是我的代碼:我怎麼能對文本文件的標題顯示時間
<?php
header('Content-disposition: attachment; filename=test.txt');
header('Content-type: text/plain');
...
?>
我想要的文件的標題可以是這樣的TEST_八月30,2013.txt我希望有人能幫助我
您可以使用date
函數,我不會使用spaces
或,
。
header('Content-disposition: attachment; filename=test_' . date('F_j_Y') . '.txt');
非常感謝你爲我工作,你是最好的! – user2730996
[如果此答案解決了您的問題,請接受它。](http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work) –
'頭( '內容處置:附件;文件名=測試_'。 'TXT' 日期( 'F_j_Y'));' – Itay
非常感謝它爲我工作:) – user2730996
請不要擅自複製問題,重新編輯以前的問題,以改進它的持有消息告訴你的方式,然後等待重新投票。 –