PHP 8.5.10 Released!

Yaf_Session::__isset

(Yaf >=1.0.0)

Yaf_Session::__issetCheck if a session key exists

Опис

public function Yaf_Session::__isset(string $name): bool

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

Параметри

name

The session key to check.

Значення, що повертаються

Returns true if the key exists, false otherwise.

Приклади

Приклад #1 Yaf_Session::__isset() example

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

$session->user_id = 42;

var_dump(isset($session->user_id));
var_dump(isset($session->user_name));
?>

Поданий вище приклад виведе щось схоже на:

bool(true)
bool(false)

Прогляньте також

add a note

User Contributed Notes

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