ID: 46672 User updated by: rfludwick at gmail dot com Reported By: rfludwick at gmail dot com -Status: No Feedback +Status: Open Bug Type: SimpleXML related Operating System: Gentoo Linux PHP Version: 5.2.6 New Comment:
I got the same result when using the snapshot, as well as version 5.2.8. Previous Comments: ------------------------------------------------------------------------ [2008-12-05 01:00:01] php-bugs at lists dot php dot net No feedback was provided for this bug for over a week, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open". ------------------------------------------------------------------------ [2008-12-01 17:25:54] rfludwick at gmail dot com Still broken in that snapshot. ------------------------------------------------------------------------ [2008-11-27 02:01:56] [email protected] Please try using this CVS snapshot: http://snaps.php.net/php5.2-latest.tar.gz For Windows: http://windows.php.net/snapshots/ ------------------------------------------------------------------------ [2008-11-25 23:35:36] rfludwick at gmail dot com Description: ------------ It appears that cloning a SimpleXML object will not produce the same XML output on asXML() as the original object. The original will output the XML header and a line break after the XML while the cloned object is missing these. Reproduce code: --------------- <?php $simplexml = new SimpleXMLElement("<root />"); $simplexml->path->to->node = "Zend"; $simplexml_2 = clone $simplexml; echo "|{$simplexml->asXML()}|\n|{$simplexml_2->asXML()}|"; Expected result: ---------------- |<?xml version="1.0"?> <root><path><to><node>Zend</node></to></path></root> | |<?xml version="1.0"?> <root><path><to><node>Zend</node></to></path></root> | Actual result: -------------- |<?xml version="1.0"?> <root><path><to><node>Zend</node></to></path></root> | |<root><path><to><node>Zend</node></to></path></root>| ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=46672&edit=1
