レスポンスの返却 =================== Part of the HTTP cycle is returning responses to clients. :doc:`Phalcon\\Http\\Response <../api/Phalcon_Http_Response>` is the Phalcon component designed to achieve this task. HTTP responses are usually composed by headers and body. The following is an example of basic usage: .. code-block:: php setStatusCode(404, "Not Found"); // Set the content of the response $response->setContent("Sorry, the page doesn't exist"); // Send response to the client $response->send(); If you are using the full MVC stack there is no need to create responses manually. However, if you need to return a response directly from a controller's action follow this example: .. code-block:: php setContent( $feed->asString() ); // Return the response return $response; } } Working with Headers -------------------- Headers are an important part of the HTTP response. It contains useful information about the response state like the HTTP status, type of response and much more. You can set headers in the following way: .. code-block:: php setHeader("Content-Type", "application/pdf"); $response->setHeader("Content-Disposition", 'attachment; filename="downloaded.pdf"'); // Setting a raw header $response->setRawHeader("HTTP/1.1 200 OK"); A :doc:`Phalcon\\Http\\Response\\Headers <../api/Phalcon_Http_Response_Headers>` bag internally manages headers. This class retrieves the headers before sending it to client: .. code-block:: php getHeaders(); // Get a header by its name $contentType = $headers->get("Content-Type"); リダイレクト ------------------- With :doc:`Phalcon\\Http\\Response <../api/Phalcon_Http_Response>` you can also execute HTTP redirections: .. code-block:: php redirect(); // Redirect to the local base URI $response->redirect("posts/index"); // Redirect to an external URL $response->redirect("http://en.wikipedia.org", true); // Redirect specifying the HTTP status code $response->redirect("http://www.example.com/new-location", true, 301); All internal URIs are generated using the 'url' service (by default :doc:`Phalcon\\Mvc\\Url `). This example demonstrates how you can redirect using a route you have defined in your application: .. code-block:: php redirect( [ "for" => "index-lang", "lang" => "jp", "controller" => "index", ] ); Note that a redirection doesn't disable the view component, so if there is a view associated with the current action it will be executed anyway. You can disable the view from a controller by executing :code:`$this->view->disable()`; HTTPキャッシュ -------------- One of the easiest ways to improve the performance in your applications and reduce the traffic is using HTTP Cache. Most modern browsers support HTTP caching and is one of the reasons why many websites are currently fast. HTTP Cache can be altered in the following header values sent by the application when serving a page for the first time: * *Expires:* With this header the application can set a date in the future or the past telling the browser when the page must expire. * *Cache-Control:* This header allows to specify how much time a page should be considered fresh in the browser. * *Last-Modified:* This header tells the browser which was the last time the site was updated avoiding page re-loads * *ETag:* An etag is a unique identifier that must be created including the modification timestamp of the current page 有効期限の設定 ^^^^^^^^^^^^^^^^^^^^^^^^^^ The expiration date is one of the easiest and most effective ways to cache a page in the client (browser). Starting from the current date we add the amount of time the page will be stored in the browser cache. Until this date expires no new content will be requested from the server: .. code-block:: php modify("+2 months"); $response->setExpires($expiryDate); The Response component automatically shows the date in GMT timezone as expected in an Expires header. If we set this value to a date in the past the browser will always refresh the requested page: .. code-block:: php modify("-10 minutes"); $response->setExpires($expiryDate); Browsers rely on the client's clock to assess if this date has passed or not. The client clock can be modified to make pages expire and this may represent a limitation for this cache mechanism. キャッシュコントロール ^^^^^^^^^^^^^^^^^^^^^^ This header provides a safer way to cache the pages served. We simply must specify a time in seconds telling the browser how long it must keep the page in its cache: .. code-block:: php setHeader("Cache-Control", "max-age=86400"); The opposite effect (avoid page caching) is achieved in this way: .. code-block:: php setHeader("Cache-Control", "private, max-age=0, must-revalidate"); E-Tag ^^^^^ An "entity-tag" or "E-tag" is a unique identifier that helps the browser realize if the page has changed or not between two requests. The identifier must be calculated taking into account that this must change if the previously served content has changed: .. code-block:: php "created_at" ] ); $eTag = md5($mostRecentDate); // Send an E-Tag header $response->setHeader("E-Tag", $eTag);