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

search for in the

RecursiveCachingIterator> <RecursiveArrayIterator::getChildren
[edit] Last updated: Fri, 24 Jun 2011

view this page in

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



add a note add a note User Contributed Notes RecursiveArrayIterator::hasChildren - [0 notes]
There are no user contributed notes for this page.

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