ID: 41976
User updated by: stefan dot priebsch at e-novative dot de
Reported By: stefan dot priebsch at e-novative dot de
-Status: Bogus
+Status: Open
Bug Type: JSON related
Operating System: WinXP
PHP Version: 5.2.3
New Comment:
Sorry, I disagree. This is a bug, not bogus.
The manual says that json_encode works on any type except resources.
$xml = new SimpleXMLElement('<?xml version="1.0"
encoding="UTF-8"?><test><![CDATA[test]]></test>');
var_dump(is_resource($xml));
outputs false, (which is obvious as SimpleXML is not listed in the list
of resource types). Thus SimpleXML is not a resource and must be
processed by json_encode() without a string cast. How would I supposed
to cast an XML tree to string anyway?
Please have a look at bug#38680, where a similar issue was discussed.
Previous Comments:
------------------------------------------------------------------------
[2007-07-12 09:08:39] [EMAIL PROTECTED]
var_dump((string) $xml);
var_dump(json_encode($xml)); <-- you have to cast it to string
explicitly, otherwise json_encode() will encode the object itself, not
it's string representation.
------------------------------------------------------------------------
[2007-07-12 07:39:30] stefan dot priebsch at e-novative dot de
Description:
------------
When json_encoding (Simple)XML data, CDATA sections are ignored.
Reproduce code:
---------------
$xml = new SimpleXMLElement('<?xml version="1.0"
encoding="UTF-8"?><test>test</test>');
var_dump((string) $xml);
var_dump(json_encode($xml));
$xml = new SimpleXMLElement('<?xml version="1.0"
encoding="UTF-8"?><test><![CDATA[test]]></test>');
var_dump((string) $xml);
var_dump(json_encode($xml));
Expected result:
----------------
string 'test' (length=4)
string '{"0":"test"}' (length=12)
string 'test' (length=4)
string '{"0":"test"}' (length=12)
Actual result:
--------------
string 'test' (length=4)
string '{"0":"test"}' (length=12)
string 'test' (length=4)
string '{}' (length=2)
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=41976&edit=1