2011年12月2日

摘要: <?phpclass sample implements Iterator { private $_items = array (0, 1, 2, 3 ); public function __construct() { ; //void } public function rewind() { reset ( $this->_items ); } public function current() { return current ( $this->_items ); } public functio... 阅读全文
posted @ 2011-12-02 18:01 天空尚兰 阅读(363) 评论(0) 推荐(0) 编辑

导航