|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2009-01-06 09:27 UTC] walshes at gmail dot com
Description:
------------
The example below fails to run right. If there are 2 'CueID' elements, it works. If there are 1 or 2 non-CDATA CueID elements, it also works.
Reproduce code:
---------------
$raw_xml = '<TopLevel><Cues><CueID><![CDATA[123]]></CueID></Cues></TopLevel>';
$xml = @new SimpleXMLElement($raw_xml);
$cues = (array)$xml->Cues;
$cues = (array)$cues['CueID'];
if ($cues)
{ foreach ($cues as $c)
{ echo "got $c<BR>";
}
}
else
{ echo "SHE BROKE!";
}
Expected result:
----------------
Should print
123
Actual result:
--------------
SHE BROKE is printed
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 02:00:01 2025 UTC |
The reproduce code is unnecessarily complicated and, I believe, incorrect. Nodesets/nodes should not be cast as arrays, and if you don't, it works as expected. Reproduce code: --------------- $raw_xml = '<TopLevel><Cues><CueID><![CDATA[123]]></CueID></Cues></TopLevel>'; $TopLevel = simplexml_load_string($raw_xml); foreach ($TopLevel->Cues->CueID as $CueID) { echo $CueID, "\n"; } Expected result: ---------------- 123 Actual result: -------------- 123