Create a CSV File for a user in PHP(在 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;
}
这篇关于在 PHP 中为用户创建一个 CSV 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 PHP 中为用户创建一个 CSV 文件


基础教程推荐
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- php中的foreach复选框POST 2021-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- php中的PDF导出 2022-01-01
- 将变量从树枝传递给 js 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01