我正在尝试将 MySQLi 查询写入可下载的 CSV。以下标头为 CSV 打开一个流:
$fileName = ''; //empty file name, file name is cast later
header("Cache=Control: must-revalidate, post-check=0, pre-check=0");
header('Content-Description: File Transfer');
header("Content-type: text/csv");
header("Content-Disposition: attachment; filename={$fileName}");
header("Expires: 0");
header("Pragma: public");
$fh = @fopen( 'php://output', 'w' );
在此之下,我有以下尝试查询并将查询的每一行转换为 CSV 文件中的新行:
if(isset($_POST["Submit"]) && ($_POST['Weight'] == 'Weight')){
$fileName .= 'OutputWeightNull.csv';
$query = mysqli_query($conn, 'SELECT * FROM `Some_Table` WHERE WEIGHT = 0 OR weight IS NULL')or die(mysql_error());
$result = mysqli_fetch_array($query) or die(mysql_error());
$headerDisplayed = false;
foreach ($result as $data){
if (!headerDisplayed){
fputcsv($fh, array_keys());
$headerDisplayed = true;
}
fputcsv($fh, $data);
}
}
CSV 正在根据需要下载到浏览器,但它显示为空,查询结果未发送到 CSV。谁能指出我为什么会这样。
这是我第一次尝试比 hello world 更复杂的 PHP 脚本。如果答案非常简单或显而易见,我们深表歉意。