ID: 37076
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Feedback
Bug Type: SimpleXML related
Operating System: FreeBSD
PHP Version: 5CVS-2006-04-14 (CVS)
New Comment:
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.
Previous Comments:
------------------------------------------------------------------------
[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