wrong result with DOMNodeList and iterator_to_array use_keys
[2011-06-01 16:12 UTC] jinmoku at hotmail dot com
Description:
------------
when you pass a DOMNodeList in iterator_to_array there a weird result with use_keys on true
Test script:
---------------
$source = <<<XML
<root>
<node>val1</node>
<node>val2</node>
</root>
XML;
$doc = new DOMDocument();
$doc->loadXML($source);
$xpath = new DOMXPath($doc);
$items = $xpath->query('//node');
print_r(iterator_to_array($items, true));
print_r(iterator_to_array($items, false));
Expected result:
----------------
Array
(
[0] => DOMElement Object
(
)
[1] => DOMElement Object
(
)
)
Array
(
[0] => DOMElement Object
(
)
[1] => DOMElement Object
(
)
)
Actual result:
--------------
Array
(
[6646882] => DOMElement Object
(
)
)
Array
(
[0] => DOMElement Object
(
)
[1] => DOMElement Object
(
)
)
[2011-06-29 19:14 UTC] pierrick@php.net
[2011-08-30 04:18 UTC] datibbaw@php.net