php-src/ext/simplexml/tests/bug37076.phpt

15 lines
261 B
Plaintext
Raw Normal View History

--TEST--
Bug #37076 (SimpleXML ignores .=)
--FILE--
<?php
$xml = simplexml_load_string("<root><foo /></root>");
$xml->foo = "foo";
$xml->foo .= "bar";
print $xml->asXML();
?>
===DONE===
--EXPECT--
<?xml version="1.0"?>
<root><foo>foobar</foo></root>
===DONE===