ID: 37076 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Assigned +Status: Feedback Bug Type: SimpleXML related Operating System: * PHP Version: 6, 5.1.* Assigned To: helly New Comment:
Please try using this CVS snapshot: http://snaps.php.net/php5.2-latest.tar.gz For Windows: http://snaps.php.net/win32/php5.2-win32-latest.zip Can you please write a test case? Previous Comments: ------------------------------------------------------------------------ [2006-04-14 12:03:29] [EMAIL PROTECTED] Reproduced in HEAD It does however work in 5.0.. ------------------------------------------------------------------------ [2006-04-14 10:58:40] [EMAIL PROTECTED] This cannot work in 5.1. Please test HEAD and assign to me if it is not working in HEAD or close if it does. ------------------------------------------------------------------------ [2006-04-14 00:30:30] [EMAIL PROTECTED] Description: ------------ Simplexml doesn't respect .= Reproduce code: --------------- <?php $xml = simplexml_load_string("<root><foo /></root>"); $xml->foo = "foo"; $xml->foo .= "bar"; print $xml->asXML(); Expected result: ---------------- <?xml version="1.0"?> <root><foo>foobar</foo></root> Actual result: -------------- <?xml version="1.0"?> <root><foo>foo</foo></root> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=37076&edit=1