PHP 클래스 Neos\Flow\Mvc\Response

상속: implements Neos\Flow\Mvc\ResponseInterface
파일 보기 프로젝트 열기: neos/flow-development-collection 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$content string

공개 메소드들

메소드 설명
__toString ( ) : string Returns the content of the response.
appendContent ( string $content ) : void Appends content to the already existing content.
getContent ( ) : string Returns the response content without sending it.
send ( ) : void Sends the response
setContent ( string $content ) : void Overrides and sets the content of the response

메소드 상세

__toString() 공개 메소드

Returns the content of the response.
public __toString ( ) : string
리턴 string

appendContent() 공개 메소드

Appends content to the already existing content.
public appendContent ( string $content ) : void
$content string More response content
리턴 void

getContent() 공개 메소드

Returns the response content without sending it.
public getContent ( ) : string
리턴 string The response content

send() 공개 메소드

Sends the response
public send ( ) : void
리턴 void

setContent() 공개 메소드

Overrides and sets the content of the response
public setContent ( string $content ) : void
$content string The response content
리턴 void

프로퍼티 상세

$content 보호되어 있는 프로퍼티

protected string $content
리턴 string