📄 recursiveiterator.inc
字号:
<?php
/** @file recursiveiterator.inc * @ingroup SPL * @brief class RecursiveIterator * @author Marcus Boerger * @date 2003 - 2006 * * SPL - Standard PHP Library *//**
* @brief Interface for recursive iteration with RecursiveIteratorIterator
* @author Marcus Boerger
* @version 1.0
* @since PHP 5.0
*/
interface RecursiveIterator implements Iterator
{
/** @return whether the current element has children
*/
function hasChildren();
/** @return the sub iterator for the current element
* @note The returned object must implement RecursiveIterator.
*/
function getChildren();
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -