选择语言 :

 Module_Session::keep_flash

保持闪存SESSION数据不销毁

void Module_Session::keep_flash( [ string $keys = null ] )

参数列表

参数 类型 描述 默认值
$keys string Variable key(s) null
返回值
  • void
File: ./modules/session/session.class.php
public function keep_flash($keys = null)
{
    $keys = (null===$keys) ? array_keys(Session::$flash) : func_get_args();

    foreach ($keys as $key)
    {
        if (isset(Session::$flash[$key]))
        {
            Session::$flash[$key] = 'new';
        }
    }
}