Neos\Flow\Http\Response::getStatusLine PHP 메소드

getStatusLine() 공개 메소드

Return the Status-Line of this Response Message, consisting of the version, the status code and the reason phrase Would be, for example, "HTTP/1.1 200 OK" or "HTTP/1.1 400 Bad Request"
또한 보기: http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html#sec6.1
public getStatusLine ( ) : string
리턴 string
    public function getStatusLine()
    {
        return sprintf("%s %s %s\r\n", $this->version, $this->statusCode, $this->statusMessage);
    }