(PHP 5 >= 5.1.0)
RecursiveArrayIterator::hasChildren — بازگرداندن شی یا آرایه بودن ورودی فعلی
بازگرداندن array یا object بودن برای دستیابی به تکرارکننده از طریق RecursiveArrayIterator::getChildren().
This function has no parameters.
بازگرداندن TRUE اگر ورودی فعلی array یا object باشد در غیر این صورت FALSE بازگردانده میشود.
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