Neos\Flow\Http\AbstractMessage::getCookie PHP 메소드

getCookie() 공개 메소드

This is a shortcut for $message->getHeaders()->getCookie($name);
public getCookie ( string $name ) : Cookie
$name string Name of the cookie
리턴 Cookie The cookie or NULL if no such cookie exists
    public function getCookie($name)
    {
        return $this->headers->getCookie($name);
    }