|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2014-10-20 07:26 UTC] ian dot email at qq dot com
-Status: Open
+Status: Closed
[2014-10-20 07:26 UTC] ian dot email at qq dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 11:00:01 2025 UTC |
Description: ------------ <?xml version="1.0" encoding="UTF-8"?> <web> <seo> <theme/> <keys>keys</keys> <title>title</title> <desc>desc</desc> <banner>banner</banner> </seo> <upload> <img> <size>1000</size> <type> bmp,gif,jpg,png,jpeg </type> <show> thumb:60*60|norm:320*320|zoom:512*512 </show> </img> </upload> </web> $xml = new \DomDocument('1.0', 'UTF-8'); $xml->load('web.xml'); $notes = $xml->getElementsByTagName('img'); for ($index = 0; $index < $notes->length; $index++) { foreach ($notes->item($index)->childNodes as $nv){ if($nv->nodeType == XML_ELEMENT_NODE) echo $nv->nodeName.'=>'.$nv->nodeValue.'<br />'; } } Test script: --------------- <?xml version="1.0" encoding="UTF-8"?> <web> <seo> <theme/> <keys>keys</keys> <title>title</title> <desc>desc</desc> <banner>banner</banner> </seo> <upload> <img> <size>1000</size> <type> bmp,gif,jpg,png,jpeg </type> <show> thumb:60*60|norm:320*320|zoom:512*512 </show> </img> </upload> </web> $xml = new \DomDocument('1.0', 'UTF-8'); $xml->load('web.xml'); $notes = $xml->getElementsByTagName('img'); for ($index = 0; $index < $notes->length; $index++) { foreach ($notes->item($index)->childNodes as $nv){ if($nv->nodeType == XML_ELEMENT_NODE) echo $nv->nodeName.'=>'.$nv->nodeValue.'<br />'; } } Expected result: ---------------- $notes = $xml->getElementsByTagName('img'); Cycle number is wrong $notes = $xml->getElementsByTagName('size'); Results cannot be obtained Actual result: -------------- win7: size=>1000 type=> bmp,gif,jpg,png,jpeg show=> thumb:60*60|norm:320*320|zoom:512*512 centOS: size=>1000 type=> bmp,gif,jpg,png,jpeg show=> thumb:60*60|norm:320*320|zoom:512*512 size=>1000 type=> bmp,gif,jpg,png,jpeg show=> thumb:60*60|norm:320*320|zoom:512*512 size=>1000 type=> bmp,gif,jpg,png,jpeg show=> thumb:60*60|norm:320*320|zoom:512*512 size=>1000 type=> bmp,gif,jpg,png,jpeg show=> thumb:60*60|norm:320*320|zoom:512*512 size=>1000 type=> bmp,gif,jpg,png,jpeg show=> thumb:60*60|norm:320*320|zoom:512*512