ID:               46672
 Updated by:       [EMAIL PROTECTED]
 Reported By:      rfludwick at gmail dot com
-Status:           Open
+Status:           Feedback
 Bug Type:         SimpleXML related
 Operating System: Gentoo Linux
 PHP Version:      5.2.6
 New Comment:

Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:

  http://windows.php.net/snapshots/




Previous Comments:
------------------------------------------------------------------------

[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

Reply via email to