ThinkCMF5 使用助手函数 session进行session的操作

设置 session(当前作用域)

session('username', 'thinkcmf');

设置 session,并指定 thinkcmf作用域

session('username', 'thinkcmf', 'thinkcmf');

判断session 是否存在(当前作用域)

session('?username');

获取 session(当前作用域)

echo session('username');

获取session,thinkcmf作用域

session('username', '', 'thinkcmf');

销毁 session(当前作用域)

session('username', null);

清空 session(当前作用域)

session(null);

清除thinkcmf作用域

session(null, 'thinkcmf');

results matching ""

    No results matching ""