From:             longrennet at hotmail dot com
Operating system: Linux ES3
PHP version:      5.2.2
PHP Bug Type:     *General Issues
Bug description:  asXML() does not return the whole xml

Description:
------------
I'd like to print the xml string in my code, so i use function asXML().
But it just return the element value in the xml. 

Is the code before i use asXML effort it?

Reproduce code:
---------------
<?php

..........
..........
..........//Here is some code. If there is no these codes,it will be OK.


$string = <<<XML
<a>
 <b>
  <c>text</c>
  <c>stuff</c>
 </b>
 <d>
  <c>code</c>
 </d>
</a>
XML;

$xml = new SimpleXMLElement($string);

echo $xml->asXML();
?> 

Expected result:
----------------
<?xml version="1.0"
?><a><b><c>text</c><c>stuff</c></b><d><c>code</c></d></a>

Actual result:
--------------
text stuff code

-- 
Edit bug report at http://bugs.php.net/?id=41405&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=41405&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=41405&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=41405&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=41405&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=41405&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=41405&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=41405&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=41405&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=41405&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=41405&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=41405&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=41405&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=41405&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=41405&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=41405&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=41405&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=41405&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=41405&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=41405&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=41405&r=mysqlcfg

Reply via email to