(Yaf >=1.0.0)
Yaf_Session::next — Advance to next session entry
Moves the internal iterator to the next session entry.
This function has no parameters.
No value is returned.
Example #1 Yaf_Session::next() example
<?php
$session = Yaf_Session::getInstance();
$session->start();
$session->set("user_id", 42);
$session->set("lang", "en");
$session->rewind();
echo $session->key(), PHP_EOL;
$session->next();
echo $session->key(), PHP_EOL;
?>The above example will output something similar to:
user_id lang