PHP 8.6.0 Beta 3 is available for testing

Yaf_Session::start

(Yaf >=1.0.0)

Yaf_Session::startStart the session

Descrizione

public function Yaf_Session::start(): Yaf_Session

Starts the session if it has not been started yet. This calls PHP's native session start mechanism. Calling this method multiple times is safe.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns the Yaf_Session instance.

Esempi

Example #1 Yaf_Session::start() example

<?php
// typically done once per request, e.g. in a bootstrap
$session = Yaf_Session::getInstance();
$session->start();

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

Vedere anche:

add a note

User Contributed Notes

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