recursiveiterator.inc

来自「PHP v6.0 For Linux 运行环境:Win9X/ WinME/ Wi」· INC 代码 · 共 30 行

INC
30
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?