It's worth to mention that DOMNodeList is not an Array, so you have to convert first to an array before to use for, foreach or array_map, array_filter, array_walk functions.
Use iterator_to_array to make the conversion ( since PHP 5.1.0 ) .
<code>
/* @ suppress warning var_dump not yet implemented for class */
@array_walk( iterator_to_array( $Some_NodeList ), 'var_dump' ) );
foreach( iterator_to_array( $Some_NodeList ) as $node )
@var_dump( $node );
</code>
Hope is usefull.