summaryrefslogtreecommitdiff
path: root/ext/simplexml/tests/bug37076_1.phpt
blob: d2260040c14dd2df81e73d752a16ec3ade0a5f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #37076 (SimpleXML ignores .=) (appending to unnamed attribute)
--FILE--
<?php
$xml = simplexml_load_string("<root><foo /></root>");
$xml->{""} .= "bar";
print $xml->asXML();
?>
===DONE===
--EXPECTF--
Warning: main(): Cannot write or create unnamed element in %s on line %d

Warning: main(): Cannot write or create unnamed element in %s on line %d
<?xml version="1.0"?>
<root><foo/></root>
===DONE===