php-8.0.30-src/ext/dom/tests/bug75451.phpt

19 lines
331 B
PHP

--TEST--
Bug #75451 (Assertion fails while foreach on empty xpath query)
--SKIPIF--
<?php
require_once('skipif.inc');
?>
--FILE--
<?php
$dom = new DOMDocument();
$dom->loadXML('<root><child/></root>');
$xpath = new DOMXpath($dom);
foreach($xpath->query('/root/noexist') as $child) {
var_dump($child);
}
?>
okey
--EXPECT--
okey