|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-04-23 17:42 UTC] helly@php.net
[2007-04-24 14:05 UTC] fedelman at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 15:00:01 2025 UTC |
Description: ------------ When I've got a node with one attribute and text, the SimpleXML does not return the attribute, it only return the text. Please, see the example. I think may be it's this is a bug. Reproduce code: --------------- $strXml = " <root> <data myattr=\"This is the value\">This is the text</data> </root>"; $oXML=simplexml_load_string($strXml); echo "<pre>"; var_dump($oXML); echo "</pre>"; Expected result: ---------------- object(SimpleXMLElement)#1 (2) { ["@attributes"]=> array(1) { ["myattr1"]=> string(17) "This is the value" } string(16) "This is the text" } Actual result: -------------- object(SimpleXMLElement)#1 (1) { ["data"]=> string(16) "This is the text" }