Prado\Web\TSessionIterator::next PHP 메소드

next() 공개 메소드

This method is required by the interface Iterator.
public next ( )
    public function next()
    {
        do {
            $this->_key = next($this->_keys);
        } while (!isset($_SESSION[$this->_key]) && $this->_key !== false);
    }