我想下载excel文件导入数据,文件名是时间戳,下载时如何使用?这是我的代码,在此先感谢。
$filename = "ersvp".date("Y-m-d").".csv";
$csv_file = fopen('php://output', 'w');
header('Content-Type: text/csv; charset=utf-8');
header('Content-Disposition: attachment; filename="'.$filename.'"');