具体指明带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.
;
$i++;
}
echo $linkstring;
}
echo get_node_urls(trim($_REQUEST[ nodeid ]));
?>
如果I 装载 每一行的末尾均无运输回报。 应:
0, id1, http://link1.com 1, id2, http://link2.com
而是:
0, id1, http://link1.com 1, id2, http://link2.com
CSV读者读物如下:
id1 http://link1.com 1
Is there a different way of writing the end of line for a CSV?