0

大家好,我如何在文本文件的标题中显示时间,这是我的代码:

 <?php
 header('Content-disposition: attachment; filename=test.txt');
 header('Content-type: text/plain');
 ...
 ?>

我希望文件的标题可以像这样 test_ August 30, 2013.txt 希望有人能帮助我

4

1 回答 1

1

您可以使用该date功能,而我不会使用spacesor ,

 header('Content-disposition: attachment; filename=test_' . date('F_j_Y') . '.txt');
于 2013-08-30T15:49:49.063 回答