时间:2021-07-01 10:21:17 帮助过:21人阅读
$dom=new DOMDocument('1.0');
$dom->load('ceshi.xml');
$root=$dom->getElementsByTagName('online');
$root=$root->item(0);
$userid=$root->getElementsByTagName('userid');
foreach($userid as $b)
{
foreach($b->attributes as $attr){
$value=$attr->nodeValue;
$name[].=$attr->nodeName;
{if($value=="xiao")
{
print_r($name);
}
}
}
}
$dom->save('ceshi.xml');
xiaxin
rwet
gaoji
$dom=new DOMDocument('1.0');Array
$dom->load('ceshi.xml');
$root=$dom->getElementsByTagName('online');
$root=$root->item(0);
$userid=$root->getElementsByTagName('userid');
foreach($userid as $b) {
if($b->attributes->getNamedItem('label')->nodeValue == 'xiao') {
foreach($b->attributes as $attr){
$res[$attr->nodeName] = $attr->nodeValue;
}
print_r($res);
}
}