php-src/ext/simplexml/tests/bug37076_1.phpt
2011-09-06 07:09:56 +00:00

19 lines
483 B
PHP

--TEST--
Bug #37076 (SimpleXML ignores .=) (appending to unnamed attribute)
--SKIPIF--
<?php if (!extension_loaded("simplexml")) print "skip"; ?>
--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===