RecursiveArrayIterator
PHP Manual

RecursiveArrayIterator::hasChildren

(PHP 5 >= 5.1.0)

RecursiveArrayIterator::hasChildrenبازگرداندن شی یا آرایه بودن ورودی فعلی

Description

public bool RecursiveArrayIterator::hasChildren ( void )

بازگرداندن array یا object بودن برای دستیابی به تکرارکننده از طریق RecursiveArrayIterator::getChildren().

Parameters

This function has no parameters.

Return Values

بازگرداندن TRUE اگر ورودی فعلی array یا object باشد در غیر این صورت FALSE بازگردانده می‌شود.

Examples

Example #1 مثال RecursiveArrayIterator::hasChildren()

<?php
$fruits 
= array("a" => "lemon""b" => "orange", array("a" => "apple""p" => "pear"));

$iterator = new RecursiveArrayIterator($fruits);

while (
$iterator->valid()) {

    
// Check if there are children
    
if ($iterator->hasChildren()) {
        
// print all children
        
foreach ($iterator->getChildren() as $key => $value) {
            echo 
$key ' : ' $value "\n";
        }
    } else {
        echo 
"No children.\n";
    }

    
$iterator->next();
}
?>

The above example will output:

No children.
No children.
a : apple
p : pear

See Also


RecursiveArrayIterator
PHP Manual