PHP 클래스 Yosymfony\Spress\HttpServer\ServerResponse

저자: Victor Puertas ([email protected])
파일 보기 프로젝트 열기: spress/spress 1 사용 예제들

공개 메소드들

메소드 설명
__construct ( string $content, integer $statusCode = 200, string $contentType = 'text/html' ) Constructor.
getContent ( ) : string Get the content of the response.
getContentType ( ) : string Get the MIME type.
getStatusCode ( ) : integer Get the status code.
setContent ( string $content ) Set the content of the response.
setContentType ( string $type ) Set the MIME type. e.g: 'text/html'.
setStatusCode ( integer $code ) Set the status code. e.g: 200 for ok response.

메소드 상세

__construct() 공개 메소드

Constructor.
public __construct ( string $content, integer $statusCode = 200, string $contentType = 'text/html' )
$content string Content of the response
$statusCode integer The status code
$contentType string The MIME type

getContent() 공개 메소드

Get the content of the response.
public getContent ( ) : string
리턴 string

getContentType() 공개 메소드

Get the MIME type.
public getContentType ( ) : string
리턴 string

getStatusCode() 공개 메소드

Get the status code.
public getStatusCode ( ) : integer
리턴 integer

setContent() 공개 메소드

Set the content of the response.
public setContent ( string $content )
$content string

setContentType() 공개 메소드

Set the MIME type. e.g: 'text/html'.
public setContentType ( string $type )
$type string

setStatusCode() 공개 메소드

Set the status code. e.g: 200 for ok response.
public setStatusCode ( integer $code )
$code integer