This version is outdated. You should upgrade your project to Mako 12.1!
Routing and controllers

Response



The response class helps you build a HTTP response.

An instance of the response class is always available in all controller classes. It is also easily made available in route closures.


Basics

The phpbody method allows you to set the response body. This is not normally needed as the framework automatically sets the response body to the return value of your controller/route action. It can however be useful if you want to alter the response body in middleware.

The phpgetBody method returns the response body.

$responseBody = $this->response->getBody();

The phptype method lets you define the response type as well as the response charset. The default response type is phptext/html and the default charset is phpUTF-8. The default charset is defined in your phpapp\config\application.php config file.

$this->response->type('application/json');

// You can also override the default charset

$this->response->type('application/json', 'iso-8859-1');

The phpgetType method returns the current response type.

$responseType = $this->response->getType();

The phpcharset method lets you set the response charset. The default charset is phpUTF-8and it is defined in your phpapp\config\application.php config file.

$this->response->charset('iso-8859-1');

The phpgetCharset returns the current response charset.

$responseCharset = $this->response->getCharset();

The phpstatus method lets you set the response status.

$this->response->status(404); // Sends the 404 "Not Found" header.

The phpgetStatus method returns the current status code.

$responseStatus = $this->response->getStatus();

Cookies

The getCookies method returns a cookie collection.

$cookies = $this->response->getCookies();

The add method adds a cookie to the response.

// Sets a cookie that expires when the browser closes

$cookies->add('name', 'value');

// Sets a cookie that expires after 1 hour

$cookies->add('name', 'value', 3600);

// You can also set the `path`, `domain`, `secure` and `httponly` options using the fourth parameter

$cookies->add('name', 'value', 3600, ['path' => '/mydir', 'domain' => '.example.org']);

If you want to set signed cookies then you'll have to use the addSigned method. The benefit of using signed cookies is that they can't be tampered with on the client side.

The delete method allows you to delete both normal and signed cookies from the client.

$cookies->delete('name');

// You can also set the `path`, `domain`, `secure` and `httponly` options using the fourth parameter

$cookies->delete('name', ['path' => '/mydir', 'domain' => '.example.org']);

The cookie collection also includes the following methods in addition to the ones shown in the examples above.

Method Description
setOptions($options) Allows you to override the default cookie options
has($name) Returns true if the response includes the cookie and false if not
remove($name) Removes the cookie from the response
clear() Removes all cookies from the response
all() Returns an array containing all the cookies

Headers

The getHeaders method returns a header collection.

$headers = $this->response->getHeaders();

The add method adds a header to your response.

$headers->add('X-My-Header', 'value');

The header collection also includes the following methods in addition to the ones shown in the examples above.

Method Description
has($name) Returns true if the response includes the header and false if not
remove($name) Removes the header from the response
clear() Removes all headers from the response
all() Returns an array containing all the headers

Caching and compression

You can enable phpETag caching using the phpcache method. Doing so can save bandwidth as the response body will only be sent if it has been modified since the last request.

$this->response->cache();

The phpdisableCaching method disables phpETag caching if it has been enabled.

$this->response->disableCaching();

The phpcompress method enables output compression. This will save you bandwidth in exchange for a slight bump in CPU usage.

$this->response->compress();

The phpdisableCompression method disables output compression if it has been enabled.

$this->response->disableCompression();