From:             rfludwick at gmail dot com
Operating system: Gentoo Linux
PHP version:      5.2.6
PHP Bug Type:     SimpleXML related
Bug description:  Cloned SimpleXML Output Different

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 bug report at http://bugs.php.net/?id=46672&edit=1
-- 
Try a CVS snapshot (PHP 5.2):        
http://bugs.php.net/fix.php?id=46672&r=trysnapshot52
Try a CVS snapshot (PHP 5.3):        
http://bugs.php.net/fix.php?id=46672&r=trysnapshot53
Try a CVS snapshot (PHP 6.0):        
http://bugs.php.net/fix.php?id=46672&r=trysnapshot60
Fixed in CVS:                        
http://bugs.php.net/fix.php?id=46672&r=fixedcvs
Fixed in CVS and need be documented: 
http://bugs.php.net/fix.php?id=46672&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=46672&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=46672&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=46672&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=46672&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=46672&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=46672&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=46672&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=46672&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=46672&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=46672&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=46672&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=46672&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=46672&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=46672&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=46672&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=46672&r=mysqlcfg

Reply via email to