Kelpie\Server\Response::head PHP 메소드

head() 공개 메소드

Top header of the response, containing the status code and response headers.
public head ( )
    public function head()
    {
        return sprintf("HTTP/1.1 %s %s\r\n%s\r\n", $this->_status, self::$HTTP_STATUS_CODES[$this->_status], $this->headersOutput());
    }