我正在尝试导出一个 csv 文件,我需要在打印的数据库字段之间创建空间,因为所有内容都是一个简单的行。
我需要做的也是在标题中打印字段的名称。这是我拥有的代码。首先,我需要导出 csv 选项卡中的字段或字段之间的空格...
if ( !$result1 ) { echo mysql_error(); }
while ($row = mysql_fetch_array($result1)) {
$last = end($row);
foreach ($row as $item) {
fwrite($fh, $item);
if ($item != $last)
fwrite($fh, "\t");
}
fwrite($fh, "\n");
}
fclose($fh);