yii\web\CacheSession::calculateKey PHP 메소드

calculateKey() 보호된 메소드

Generates a unique key used for storing session data in cache.
protected calculateKey ( string $id ) : mixed
$id string session variable name
리턴 mixed a safe cache key associated with the session variable name
    protected function calculateKey($id)
    {
        return [__CLASS__, $id];
    }