gpt4 book ai didi

php - MySQL 和 fputcsv PHP 字段定界符不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 12:06:10 25 4
gpt4 key购买 nike

<分区>

这是我的代码:

<?php
error_reporting(E_ALL ^ E_NOTICE);
header('Content-Type: text/csv; charset=utf-8');
header('Content-Disposition: attachment; filename=data.csv');
$output = fopen('php://output', 'w');
fputcsv($output, array('field1', 'field2'),';','"');
mysql_connect('localhost', 'usr', 'psswd');
mysql_select_db('db');
$rows = mysql_query('
SELECT
field1,
field2
FROM table
');
while ($row = mysql_fetch_assoc($rows)) fputcsv($output, $row);
mysqli_close($con);
?>

结果是“;”分隔符只用在csv文件的头部,不是每一行。坦克。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com