Cake\Network\Session::_hasSession PHP 메소드

_hasSession() 보호된 메소드

Returns whether a session exists
protected _hasSession ( ) : boolean
리턴 boolean
    protected function _hasSession()
    {
        return !ini_get('session.use_cookies') || isset($_COOKIE[session_name()]) || $this->_isCLI;
    }