(Yaf >=1.0.0)
Yaf_Session::offsetSet — Set a session value (ArrayAccess)
Sets a session value. This method is called when array syntax is used to write to a session object.
nameThe session key to set.
valueThe value to store.
No value is returned.
Example #1 Yaf_Session::offsetSet() example
<?php
class LoginController extends Yaf_Controller_Abstract
{
public function indexAction()
{
// ... verify the credentials against the database
$session = Yaf_Session::getInstance();
$session->start();
// writing with array syntax calls offsetSet()
$session["user_id"] = $user->getId();
$session["login_time"] = time();
return $this->redirect("/dashboard");
}
}
?>