downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

RecursiveTreeIterator> <RecursiveRegexIterator::getChildren
Last updated: Fri, 20 May 2011

view this page in

RecursiveRegexIterator::hasChildren

(PHP 5 >= 5.2.0)

RecursiveRegexIterator::hasChildrenReturns whether an iterator can be obtained for the current entry.

Descripción

public bool RecursiveRegexIterator::hasChildren ( void )

Returns whether an iterator can be obtained for the current entry. This iterator can be obtained via RecursiveRegexIterator::getChildren().

Parámetros

Esta función no tiene parámetros.

Valores devueltos

Returns TRUE if an iterator can be obtained for the current entry, otherwise returns FALSE.

Ejemplos

Example #1 RecursiveRegexIterator::hasChildren() example

<?php
$rArrayIterator 
= new RecursiveArrayIterator(array('test1', array('tet3''test4''test5')));
$rRegexIterator = new RecursiveRegexIterator($rArrayIterator'/^test/',
    
RecursiveRegexIterator::ALL_MATCHES);

foreach (
$rRegexIterator as $value) {
    
var_dump($rRegexIterator->hasChildren());
}
?>

El resultado del ejemplo sería:

bool(false)
bool(true)

Ver también



add a note add a note User Contributed Notes RecursiveRegexIterator::hasChildren
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites