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

Descrizione

public function Yaf_Session::valid(): bool

Checks whether the current session iterator position is valid.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Esempi

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());
?>

Il precedente esempio visualizzerà qualcosa simile a:

bool(true)
bool(false)

Vedere anche:

add a note

User Contributed Notes

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