在 PHP 中为用户创建一个 CSV 文件
我在 MySQL 数据库中有数据.我正在向用户发送一个 URL,以便将他们的数据作为 CSV 文件导出.
I have data in a MySQL database. I am sending the user a URL to get their data out as a CSV file.
我已经涵盖了链接、MySQL 查询等的电子邮件.
I have the e-mailing of the link, MySQL query, etc. covered.
当他们点击链接时,我怎样才能弹出一个窗口来下载带有 MySQL 记录的 CVS?
How can I, when they click the link, have a pop-up to download a CVS with the record from MySQL?
我已经掌握了获取记录的所有信息.我只是不明白如何让 PHP 创建 CSV 文件并让他们下载扩展名为 .csv 的文件.
I have all the information to get the record already. I just don't see how to have PHP create the CSV file and let them download a file with a .csv extension.
推荐答案
试试:
header("Content-type: text/csv");
header("Content-Disposition: attachment; filename=file.csv");
header("Pragma: no-cache");
header("Expires: 0");
echo "record1,record2,record3
";
die;
等
这是我用来选择性地对 CSV 字段进行编码的代码片段:
Here's a snippet of code I use to optionally encode CSV fields:
function maybeEncodeCSVField($string) {
if(strpos($string, ',') !== false || strpos($string, '"') !== false || strpos($string, "
") !== false) {
$string = '"' . str_replace('"', '""', $string) . '"';
}
return $string;
}
相关文章