php-src/ext/simplexml/tests/bug41947.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

17 lines
482 B
PHP

--TEST--
Bug #41947 (addChild incorrectly registers empty strings as namespaces)
--SKIPIF--
<?php if (!extension_loaded("simplexml")) print "skip"; ?>
--FILE--
<?php
$xml = simplexml_load_string('<?xml version="1.0" encoding="utf-8"?><root xmlns:myns="http://myns" />');
$grandchild = $xml->addChild('child', null, 'http://myns')->addChild('grandchild', 'hello', '');
$gchild = $xml->xpath("//grandchild");
if (count($gchild) > 0) {
echo $gchild[0]."\n";
}
?>
--EXPECT--
hello