gpt4 book ai didi

php - 需要将其中包含/逗号的字符串正确导出到 CSV 文件中

转载 作者:可可西里 更新时间:2023-11-01 06:55:37 24 4
gpt4 key购买 nike

编辑:将函数的错误部分复制到这个问题中,下面是适当的部分。

$values = mysql_query("SELECT lname, fname, email, dtelephone, etelephone, contactwhen, thursday, 
friday, saturday, sunday, monday, comments FROM volunteers_2009 WHERE venue_id = $venue_id");

while ($rowr = mysql_fetch_row($values)) {
for ($j=0;$j<$i;$j++) {
$csv_output .= $rowr[$j].", ";
}
$csv_output .= "\n";
}

我的评论中可能有逗号,甚至是双引号,当评论字段中有逗号时,它会丢弃整个 csv 文件。

下面的代码是如何将数据加载到 csv 字符串中,以放入 csv 文件。

如何让它正确导出评论字段数据?

最佳答案

你应该看看 fputcsv() .那里也有一些有用的评论。

int fputcsv ( resource $handle , array $fields [, string $delimiter = ',' 
[, string $enclosure = '"' ]] )

fputcsv() formats a line (passed as a fields array) as CSV and write it (terminated by a newline) to the specified file handle.

关于php - 需要将其中包含/逗号的字符串正确导出到 CSV 文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/770636/

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