PHP 8.5.10 Released!

Yaf_Session::next

(Yaf >=1.0.0)

Yaf_Session::nextAdvance to next session entry

Description

public function Yaf_Session::next(): void

Moves the internal iterator to the next session entry.

Parameters

This function has no parameters.

Return Values

No value is returned.

Examples

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

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top