Cml\Session::close PHP Метод

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

session close
public close ( ) : boolean
Результат boolean
    public function close()
    {
        if (Config::get('session_user_LOC') == 'db') {
            $this->handler->wlink = null;
        }
        //$GLOBALS['debug'] && \Cml\Debug::stopAndShowDebugInfo(); 开启ob_start()的时候 php此时已经不能使用压缩,所以这边输出的数据是没压缩的,而之前已经告诉浏览器数据是压缩的,所以会导致火狐、ie不能正常解压
        //$this->gc($this->lifeTime);
        return true;
    }