标签: php
我有一个代码,用于创建csv文件并从mysql中获取表中的所有数据。如何保存而不是下载csv文件?因为此代码只会下载文件。我打算将它保存在我的服务器或php文件所在的位置。
$filename = "myFile.csv"; header('Content-type: application/csv'); header('Content-Disposition: attachment; filename='.$filename); echo $output; exit;