使用PHP指定CSV文件的行尾字符的正确方法是什么。我有这个脚本来写CSV文件。
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);
include_once("phpshared.php");
function get_node_urls( $nodeid ) {
$nodes = new SimpleXMLElement('linkcards.xml', null, true);
$nodesarray = $nodes->xpath("//LINKCARD[@ID='$nodeid']");
$linkstring = '';
$node = $nodesarray[0];
$i = 0;
foreach($node->LINKS->LINK as $url)
{
$linkstring .= $i.','.$url['ID'].','.$url->TITLE.','.$url->URL.'\r\n';
$i++;
}
echo $linkstring;
}
echo get_node_urls(trim($_REQUEST['nodeid']));
?>
如果我加载$linkstring
,则每行末尾没有回车符。这些行应该是:
0, id1, http://link1.com 1, id2, http://link2.com
相反,它们是:
0, id1, http://link1.com\r\n1, id2, http://link2.com
CSV读取器将该行读为:
id1 http://link1.com\r\n1
是否有不同的方式为CSV写入行尾?
答案 0 :(得分:10)
\r\n
括在"
而不是'
中,以便解释转义序列(see documentation):
$linkstring .= $i.','.$url['ID'].','.$url->TITLE.','.$url->URL."\r\n";
答案 1 :(得分:5)
在浏览网页后,我发现问题是由于自动检测线结束未启用。只需在代码上设置它就可以了。它对我有用。
ini_set('auto_detect_line_endings',TRUE);
使用auto_detect启用,您可以使用
将文件解析为常规文件$lines = file('your_csv_file.csv');
在我的情况下,我已经使用str_getcsc
解析CSV行function parse_my_csv($filename) {
$lines = file($filename);
$data = array();
for($i=0;$i<count($lines);$i++) {
array_push($data, str_getcsv($lines[$i]));
}
return $data;
}