PHP 8.6.0 Beta 3 is available for testing

Yaf_Session::offsetExists

(Yaf >=1.0.0)

Yaf_Session::offsetExistsCheck if a session key exists (ArrayAccess)

Descrizione

public function Yaf_Session::offsetExists(mixed $name): bool

Checks whether a session key exists. This method is an alias of Yaf_Session::has() and is called when isset() is used with array syntax.

Elenco dei parametri

name

The session key to check.

Valori restituiti

Returns true if the key exists, false otherwise.

Esempi

Example #1 Yaf_Session::offsetExists() example

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

$session["user_id"] = 42;

var_dump(isset($session["user_id"]));
var_dump(isset($session["user_name"]));
?>

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