Auth_Yadis_PHPSession::set PHP Метод

set() публичный Метод

Set a session key/value pair.
public set ( string $name, string $value )
$name string The name of the session key to add.
$value string The value to add to the session.
    function set($name, $value)
    {
        $_SESSION[$name] = $value;
    }
Auth_Yadis_PHPSession