PHP Interface ManaPHP\Http\ResponseInterface

Datei anzeigen Open project: manaphp/manaphp

Public Methods

Method Description
appendContent ( string $content ) : static Appends a string to the HTTP response body
getContent ( ) : string Gets the HTTP response body
redirect ( string | array $location, boolean $temporarily = true ) : static Redirect by HTTP to another action or URL
send ( ) : static Prints out HTTP response to the client
sendHeaders ( ) : static Sends headers to the client
setAttachment ( string $attachmentName ) : static
setContent ( string $content ) : static Sets HTTP response body
setContentType ( string $contentType, string $charset = null ) : static Sets the response content-type mime, optionally the charset
setCsvContent ( array $rows, string $attachmentName, array | string $columns = null ) : static
setExpires ( integer $timestamp ) : static Sets output expire time header
setFileToSend ( string $file, string $attachmentName = null ) : static Sets an attached file to be sent at the end of the request
setHeader ( string $name, string $value ) : static send a header in the response
setJsonContent ( array $content, integer $jsonOptions = null ) : static Sets HTTP response body. The parameter is automatically converted to JSON $response->setJsonContent(array("status" => "OK"));
setNotModified ( ) : static Sends a Not-Modified response
setRawHeader ( string $header ) : static Send a raw header in the response
setStatusCode ( integer $code, string $message ) : static Sets the HTTP response code

Method Details

appendContent() public method

Appends a string to the HTTP response body
public appendContent ( string $content ) : static
$content string
return static

getContent() public method

Gets the HTTP response body
public getContent ( ) : string
return string

redirect() public method

Redirect by HTTP to another action or URL
public redirect ( string | array $location, boolean $temporarily = true ) : static
$location string | array
$temporarily boolean
return static

send() public method

Prints out HTTP response to the client
public send ( ) : static
return static

sendHeaders() public method

Sends headers to the client
public sendHeaders ( ) : static
return static

setAttachment() public method

public setAttachment ( string $attachmentName ) : static
$attachmentName string
return static

setContent() public method

Sets HTTP response body
public setContent ( string $content ) : static
$content string
return static

setContentType() public method

Sets the response content-type mime, optionally the charset
public setContentType ( string $contentType, string $charset = null ) : static
$contentType string
$charset string
return static

setCsvContent() public method

public setCsvContent ( array $rows, string $attachmentName, array | string $columns = null ) : static
$rows array
$attachmentName string
$columns array | string
return static

setExpires() public method

Sets output expire time header
public setExpires ( integer $timestamp ) : static
$timestamp integer
return static

setFileToSend() public method

Sets an attached file to be sent at the end of the request
public setFileToSend ( string $file, string $attachmentName = null ) : static
$file string
$attachmentName string
return static

setHeader() public method

send a header in the response
public setHeader ( string $name, string $value ) : static
$name string
$value string
return static

setJsonContent() public method

Sets HTTP response body. The parameter is automatically converted to JSON $response->setJsonContent(array("status" => "OK"));
public setJsonContent ( array $content, integer $jsonOptions = null ) : static
$content array
$jsonOptions integer
return static

setNotModified() public method

Sends a Not-Modified response
public setNotModified ( ) : static
return static

setRawHeader() public method

Send a raw header in the response
public setRawHeader ( string $header ) : static
$header string
return static

setStatusCode() public method

Sets the HTTP response code
public setStatusCode ( integer $code, string $message ) : static
$code integer
$message string
return static