PHP 8.6.0 Beta 3 is available for testing

Yaf_Session::valid

(Yaf >=1.0.0)

Yaf_Session::validCheck if current session position is valid

Description

public function Yaf_Session::valid(): bool

Checks whether the current session iterator position is valid.

Parameters

This function has no parameters.

Return Values

Returns true if the current position is valid, false otherwise.

Examples

Example #1 Yaf_Session::valid() example

<?php
$session = Yaf_Session::getInstance();
$session->start();

$session->set("user_id", 42);

$session->rewind();
var_dump($session->valid());

$session->next();
// past the last entry, the position is no longer valid
var_dump($session->valid());
?>

The above example will output something similar to:

bool(true)
bool(false)

See Also

add a note

User Contributed Notes

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