The CaptureCache pattern is useful to auto-generate static resources in base of a HTTP request. The Webserver needs to be configured to run a PHP script generating the requested resource so further requests for the same resource can be shipped without calling PHP again.
It comes with basic logic to manage generated resources.
Simplest usage as Apache-404 handler
1 2 | # .htdocs
ErrorDocument 404 /index.php
|
1 2 3 4 5 6 7 8 9 10 11 12 13 | // index.php
use Zend\Cache\PatternFactory;
$capture = Zend\Cache\PatternFactory::factory('capture', array(
'public_dir' => __DIR__,
));
// Start capturing all output excl. headers and write to public directory
$capture->start();
// Don't forget to change HTTP response code
header('Status: 200', true, 200);
// do stuff to dynamically generate output
|
Option | Data Type | Default Value | Description |
---|---|---|---|
public_dir | string | <none> | Location of public directory to write output to |
index_filename | string | “index.html” | The name of the first file if only a directory was requested |
file_locking | boolean | true | Locking output files on writing |
file_permission | integer boolean | 0600 (false on win) | Set permissions of generated output files |
dir_permission | integer boolean | 0700 (false on win) | Set permissions of generated output directories |
umask | integer boolean | false | Using umask on generating output files / directories |
Start capturing output.
Return type: | void |
---|
Write content to page identity.
Return type: | void |
---|
Get content of an already cached page.
Return type: | string|false |
---|
Check if a page has been created.
Return type: | boolean |
---|
Remove a page.
Return type: | boolean |
---|
Clear pages matching glob pattern.
Return type: | void |
---|
Set pattern options.
Return type: | Zend\Cache\Pattern\CaptureCache |
---|
Get all pattern options.
Return type: | Zend\Cache\Pattern\PatternOptions |
---|
Scaling images in base of request
1 2 | # .htdocs
ErrorDocument 404 /index.php
|
1 2 3 4 5 6 | // index.php
$captureCache = Zend\Cache\PatternFactory::factory('capture', array(
'public_dir' => __DIR__,
));
// TODO
|
The source code of this file is hosted on GitHub. Everyone can update and fix errors in this document with few clicks - no downloads needed.