Auth_Yadis_PHPSession::del PHP Method

del() public method

Remove a key/value pair from the session.
public del ( string $name )
$name string The name of the key to remove.
    function del($name)
    {
        unset($_SESSION[$name]);
    }
Auth_Yadis_PHPSession