summaryrefslogtreecommitdiff
path: root/ext/dom/tests/bug75451.phpt
blob: dae7cde98b554746f817c655c92e99ef1c72d3a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--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