ID:               37076
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Feedback
+Status:           Assigned
 Bug Type:         SimpleXML related
 Operating System: *
 PHP Version:      6, 5.1.*
 Assigned To:      helly
 New Comment:

http://php.is/bugs/37076/bug37076.phpt
(fails still)


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

[2006-05-27 01:12:01] [EMAIL PROTECTED]

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?

------------------------------------------------------------------------

[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

Reply via email to