很抱歉这个问题,但在这种情况下,我无法解决我的问题。 我加载一个包含XML文件的目录。我想为每个内容标签检索但没有跳线。
例如:如果我有:
ARCHI LEAD > MSA > 70% (pblme !)
ARCHI FONC
EDE (spec OPE specifiques à OCC) > 10%
我希望:
ARCHI LEAD > MSA > 70% (pblme !)
ARCHI FONC
EDE (spec OPE specifiques à OCC) > 10%
我的代码:
$doc->load("./comments/comments".trim($lineContent, PHP_EOL).".xml");
$noeudsPresentation = $doc->getElementsByTagName("content");
$count = $noeudsPresentation->length;
$i=0;
$j=0;
while($i < $count){
$file= fopen("comments.txt", "a+");
$tasks = $noeudsPresentation->item($i++)->nodeValue;
$tasks3 = str_replace("\n", "", $tasks);
echo $tasks3;
file_put_contents("fichier2", $tasks3,FILE_APPEND);
}
非常感谢
答案 0 :(得分:0)
globaly你可以使用rtrim()而不是str_replace()