|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2007-07-19 03:04 UTC] ichigoxi at gmail dot com
Description:
------------
like this xml------->
<root>
<item>
<a>11</a>
<b>1</b>
<c>0</c>
</item>
</root>
$dom = new DOMDocument();
$dom->load('test.xml');
$root = $dom->documentElement;
$items = $root->childNodes;
$item = $items->item(0);
$itemChildren = $item->childNodes;
$b = $itemChildren->item(1);
echo $b->nodeValue;
this code can not read $b from the xml
but this xml---------->
<root><item><a>11</a><b>1</b><c>0</c></item></root>
the code can read $b
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 16:00:02 2025 UTC |
thank you for your email,help me so much but i also have question that how to read the xml <root><item><a>11</a><b>1</b><c>0</c></item></root> -------> this xml i can do the pro $dom = new DOMDocument(); $dom->load('test.xml'); $root = $dom->documentElement; $items = $root->childNodes; $item = $items->item(0); $itemChildren = $item->childNodes; $b = $itemChildren->item(1); echo $b->nodeValue; but like this xml-------> <root> <item> <a>11</a> <b>1</b> <c>0</c> </item> </root> if i read $b = $itemChildren->item(1) or item(3) the php report that: call to a member function item() on a non-object in ..... please help me how to write the function to read the xml,thank you very much