PHP Интерфейс ManaPHP\Http\ResponseInterface

Показать файл Открыть проект

Открытые методы

Метод Описание
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

Описание методов

appendContent() публичный Метод

Appends a string to the HTTP response body
public appendContent ( string $content ) : static
$content string
Результат static

getContent() публичный Метод

Gets the HTTP response body
public getContent ( ) : string
Результат string

redirect() публичный Метод

Redirect by HTTP to another action or URL
public redirect ( string | array $location, boolean $temporarily = true ) : static
$location string | array
$temporarily boolean
Результат static

send() публичный Метод

Prints out HTTP response to the client
public send ( ) : static
Результат static

sendHeaders() публичный Метод

Sends headers to the client
public sendHeaders ( ) : static
Результат static

setAttachment() публичный Метод

public setAttachment ( string $attachmentName ) : static
$attachmentName string
Результат static

setContent() публичный Метод

Sets HTTP response body
public setContent ( string $content ) : static
$content string
Результат static

setContentType() публичный Метод

Sets the response content-type mime, optionally the charset
public setContentType ( string $contentType, string $charset = null ) : static
$contentType string
$charset string
Результат static

setCsvContent() публичный Метод

public setCsvContent ( array $rows, string $attachmentName, array | string $columns = null ) : static
$rows array
$attachmentName string
$columns array | string
Результат static

setExpires() публичный Метод

Sets output expire time header
public setExpires ( integer $timestamp ) : static
$timestamp integer
Результат static

setFileToSend() публичный Метод

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
Результат static

setHeader() публичный Метод

send a header in the response
public setHeader ( string $name, string $value ) : static
$name string
$value string
Результат static

setJsonContent() публичный Метод

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
Результат static

setNotModified() публичный Метод

Sends a Not-Modified response
public setNotModified ( ) : static
Результат static

setRawHeader() публичный Метод

Send a raw header in the response
public setRawHeader ( string $header ) : static
$header string
Результат static

setStatusCode() публичный Метод

Sets the HTTP response code
public setStatusCode ( integer $code, string $message ) : static
$code integer
$message string
Результат static