Yaf_Session::count

(Yaf >=1.0.0)

Yaf_Session::countCount session entries

Опис

public function Yaf_Session::count(): int

Returns the number of entries in the session.

Параметри

У цієї функції немає параметрів.

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

The number of session entries as an integer.

Приклади

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

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

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

var_dump(count($session));
?>

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

int(2)

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

add a note

User Contributed Notes

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