Neos\Flow\Session\TransientSession::renewId PHP 메소드

renewId() 공개 메소드

Generates and propagates a new session ID and transfers all existing data to the new session.
public renewId ( ) : string
리턴 string The new session ID
    public function renewId()
    {
        $this->sessionId = uniqid();
        return $this->sessionId;
    }