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

设置 session(当前作用域)

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

设置 session,并指定 thinkcmf作用域

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

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

  1. session('?username');

获取 session(当前作用域)

  1. echo session('username');

获取session,thinkcmf作用域

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

销毁 session(当前作用域)

  1. session('username', null);

清空 session(当前作用域)

  1. session(null);

清除thinkcmf作用域

  1. session(null, 'thinkcmf');

原文: https://www.thinkcmf.com/docs/cmf/Session.html