RecursiveCallbackFilterIterator::hasChildren

(PHP 5 >= 5.4.0, PHP 7)

RecursiveCallbackFilterIterator::hasChildrenCheck whether the inner iterator's current element has children

설명

public bool RecursiveCallbackFilterIterator::hasChildren ( void )

Returns TRUE if the current element has children, FALSE otherwise.

인수

이 함수는 인수가 없습니다.

반환값

Returns TRUE if the current element has children, FALSE otherwise.

예제

Example #1 RecursiveCallbackFilterIterator::hasChildren() basic usage

<?php

$dir 
= new RecursiveDirectoryIterator(__DIR__);

// Recursively iterate over XML files
$files = new RecursiveCallbackFilterIterator($dir, function ($current$key$iterator) {
    
// Allow recursion into directories
    
if ($iterator->hasChildren()) {
        return 
TRUE;
    }
    
// Check for XML file
    
if (!strcasecmp($current->getExtension(), 'xml')) {
        return 
TRUE;
    }
    return 
FALSE;
});

?>

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top