我正在尝试将 SQL 查询写入 PHP 中的 CSV 文件。感谢[在上一个问题][1] 中的一些建议,我已经完成了这项工作。但是,我试图从前面的示例中减少代码中的重复。
我在这里的函数中创建标头/流包装器:
function csvCreate($filename){
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' );
}
然后我在条件语句中调用该函数并在此处将 $filename 作为参数传递:
if(isset($_POST["Submit"]) && ($_POST['Weight'] == 'Weight'))
{
//csvCreate->$fileName .= 'OutputWeightNull.csv';
csvCreate('OutputWeightNull.csv');
$query = mysqli_query($conn, 'SELECT * FROM `bfi_product_volumne_data` WHERE weight = 0 OR weight IS NULL') or die(mysqli_error($conn));
if ($result = mysqli_fetch_array($query,MYSQLI_ASSOC))
{
fputcsv($fh, array_keys($result));
fputcsv($fh, $result);
while ($result = mysqli_fetch_array($query,MYSQLI_ASSOC))
{
fputcsv($fh, $result);
}
}
}
问题是数据没有写入 CSV。我的感觉是我需要将“fputcsv”调用指向该函数。我已经尝试使用 'csvCreate->fputcsv' 这似乎不起作用。任何人都可以提出问题可能在这里。谢谢
[1]: http://stackoverflow.com/questions/33433737/php-writing-a-mysql-query-to-cs