(Yaf >=1.0.0)
Yaf_Session::getInstance — Get the session singleton
Returns the singleton Yaf_Session instance, creating it if necessary. The session is started automatically on first access.
This function has no parameters.
The Yaf_Session singleton instance, or null if the session could not be started.
Example #1 Yaf_Session::getInstance() example
<?php
$session = Yaf_Session::getInstance();
$session->start();
$session->set("user_id", 42);
// ... later, elsewhere in the application
$same = Yaf_Session::getInstance();
var_dump($same === $session);
var_dump($same->get("user_id"));
?>The above example will output something similar to:
bool(true) int(42)