>  기사  >  백엔드 개발  >  怎样输出XML所有的同名节点内容?

怎样输出XML所有的同名节点内容?

WBOY
WBOY원래의
2016-06-06 20:18:361510검색

现有的PHP代码输出XML节点时,只能输出第一个同名节点内容"100". 请问怎样才能输出所有节点的内容呢?

现有代码:
/* $xmlstring 原内容:


-
id*cn
100
101
102
103
105

*/

$xmldoc = new DOMDocument();
$xmldoc->loadXML($xmlstring);
$users = $xmldoc->getElementsByTagName('GetUserInfo');
foreach ($users as $user) {

<code>$html .= 'outputCustomer:'.get_txt($user,'Customer').'<br>';
$html .= 'outputGeo:'.get_txt($user,'GeocallCLI').'<br>';</code>

}
echo $html;

function get_txt($parent, $name) {

<code>$nodes = $parent->getElementsByTagName($name);
return $nodes->item(0)->nodeValue;</code>

}
?>

另问怎样只输出 idcn节点中号前面部份, 即 id 而不是 id*cn

回复内容:

现有的PHP代码输出XML节点时,只能输出第一个同名节点内容"100". 请问怎样才能输出所有节点的内容呢?

现有代码:
/* $xmlstring 原内容:


-
id*cn
100
101
102
103
105

*/

$xmldoc = new DOMDocument();
$xmldoc->loadXML($xmlstring);
$users = $xmldoc->getElementsByTagName('GetUserInfo');
foreach ($users as $user) {

<code>$html .= 'outputCustomer:'.get_txt($user,'Customer').'<br>';
$html .= 'outputGeo:'.get_txt($user,'GeocallCLI').'<br>';</code>

}
echo $html;

function get_txt($parent, $name) {

<code>$nodes = $parent->getElementsByTagName($name);
return $nodes->item(0)->nodeValue;</code>

}
?>

另问怎样只输出 idcn节点中号前面部份, 即 id 而不是 id*cn

自己顶上, 哪位大侠能解答下么
我顶

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.