Yaf_Session::offsetSet
PHP function
Edit on GitHub ✎
(Yaf >=1.0.0)
Set a session value (ArrayAccess)
Description
Yaf_Session::offsetSet(mixed $name, mixed $value): void
Sets a session value. This method is called when array syntax is used to write to a session object.
Parameters
nameThe session key to set.
valueThe value to store.
Return Values
No value is returned.
Examples
Yaf_Session::offsetSet example
php
<?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");
}
}
?>See Also
Yaf_Session::setYaf_Session::offsetGetYaf_Session::offsetUnset