summaryrefslogtreecommitdiff
path: root/ext/simplexml/tests/bug37076.phpt
blob: a5b3801ccb983e3df9b4afb8cd073830bd1cb957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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===