mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
For rationale, see #6787 Extensions migrated in part 4: * simplexml * skeleton * soap * spl * sqlite3 * sysvmsg * sysvsem * tidy - also removed a check for an ancient dependency version
17 lines
437 B
PHP
17 lines
437 B
PHP
--TEST--
|
|
Bug #41947 (addChild incorrectly registers empty strings as namespaces)
|
|
--EXTENSIONS--
|
|
simplexml
|
|
--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
|