📄 class.atombuilderobjectiterator.inc.php
字号:
<?php
/**
* Class for creating an Atom-Feed
* @author Michael Wimmer <flaimo@gmx.net>
* @category FLP
* @copyright Copyright 漏 2002-2006, Michael Wimmer
* @license Free for non-commercial use
* @link http://flp.sf.net/
* @package Atom
* @version 1.00
*/
class AtomBuilderObjectIterator implements Iterator {
protected $current = 0;
protected $objectlist;
function __construct(AtomBuilderObjectList &$list) {
$this->objectlist =& $list;
$this->objectlist->getList();
} // end constructor
public function valid() {
return ($this->current < $this->size()) ? TRUE : FALSE;
} // end function
public function next() {
return $this->current++;
} // end function
public function ¤t() {
return $this->objectlist->objects[$this->key()];
} // end function
public function key() {
return $this->current;
} // end function
public function size() {
return count($this->objectlist->objects);
} // end function
public function rewind() {
$this->current = 0;
} // end function
} // end class
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -