Source for file Function.php
Documentation is available at Function.php
* This class extends Cache_Lite and can be used to cache the result and output of functions/methods
* This class is completly inspired from Sebastian Bergmann's
* PEAR/Cache_Function class. This is only an adaptation to
* There are some examples in the 'docs/examples' file
* Technical choices are described in the 'docs/technical' file
* @author Sebastian BERGMANN <sb@sebastian-bergmann.de>
* @author Fabien MARTY <fab@php.net>
require_once('Cache/Lite.php');
class Cache_Lite_Function extends Cache_Lite
// --- Private properties ---
* Default cache group for function caching
* @var string $_defaultGroup
var $_defaultGroup = 'Cache_Lite_Function';
* Don't cache the method call when its output contains the string "NOCACHE"
* if set to true, the output of the method will never be displayed (because the output is used
* @var boolean $_dontCacheWhenTheOutputContainsNOCACHE
var $_dontCacheWhenTheOutputContainsNOCACHE = false;
* Don't cache the method call when its result is false
* @var boolean $_dontCacheWhenTheResultIsFalse
var $_dontCacheWhenTheResultIsFalse = false;
* Don't cache the method call when its result is null
* @var boolean $_dontCacheWhenTheResultIsNull
var $_dontCacheWhenTheResultIsNull = false;
* Debug the Cache_Lite_Function caching process
* @var boolean $_debugCacheLiteFunction
var $_debugCacheLiteFunction = false;
// --- Public methods ----
* $options is an assoc. To have a look at availables options,
* see the constructor of the Cache_Lite class in 'Cache_Lite.php'
* Comparing to Cache_Lite constructor, there is another option :
* (...) see Cache_Lite constructor
* 'debugCacheLiteFunction' => (bool) debug the caching process,
* 'defaultGroup' => default cache group for function caching (string),
* 'dontCacheWhenTheOutputContainsNOCACHE' => (bool) don't cache when the function output contains "NOCACHE",
* 'dontCacheWhenTheResultIsFalse' => (bool) don't cache when the function result is false,
* 'dontCacheWhenTheResultIsNull' => (bool don't cache when the function result is null
* @param array $options options
function Cache_Lite_Function ($options = array (NULL ))
$availableOptions = array ('debugCacheLiteFunction', 'defaultGroup', 'dontCacheWhenTheOutputContainsNOCACHE', 'dontCacheWhenTheResultIsFalse', 'dontCacheWhenTheResultIsNull');
while (list ($name, $value) = each($options)) {
if (in_array($name, $availableOptions)) {
$this->$property = $value;
$this->Cache_Lite ($options);
* Calls a cacheable function or method (or not if there is already a cache for it)
* Arguments of this method are read with func_get_args. So it doesn't appear
* in the function definition. Synopsis :
* call('functionName', $arg1, $arg2, ...)
* (arg1, arg2... are arguments of 'functionName')
* @return mixed result of the function/method
$id = $this->_makeId ($arguments);
$data = $this->get ($id, $this->_defaultGroup);
if ($this->_debugCacheLiteFunction) {
$output = $array['output'];
$result = $array['result'];
if ($this->_debugCacheLiteFunction) {
// in this case, $target is for example array($obj, 'method')
if (strstr($target, '::')) { // classname::staticMethod
list ($class, $method) = explode('::', $target);
} else if (strstr($target, '->')) { // object->method
// use a stupid name ($objet_123456789 because) of problems where the object
// name is the same as this var name
list ($object_123456789, $method) = explode('->', $target);
global $ $object_123456789;
if ($this->_dontCacheWhenTheResultIsFalse) {
if ((is_bool($result)) && (!($result))) {
if ($this->_dontCacheWhenTheResultIsNull) {
if ($this->_dontCacheWhenTheOutputContainsNOCACHE) {
if (strpos($output, 'NOCACHE') > -1 ) {
$array['output'] = $output;
$array['result'] = $result;
$this->save (serialize($array), $id, $this->_defaultGroup);
* Arguments of this method are read with func_get_args. So it doesn't appear
* in the function definition. Synopsis :
* remove('functionName', $arg1, $arg2, ...)
* (arg1, arg2... are arguments of 'functionName')
* @return boolean true if no problem
return $this->remove ($id, $this->_defaultGroup);
* Make an id for the cache
* @var array result of func_get_args for the call() or the remove() method
function _makeId ($arguments)
$id = serialize($arguments); // Generate a cache id
if (!$this->_fileNameProtection) {
// if fileNameProtection is set to false, then the id has to be hashed
// because it's a very bad file name in most cases
Documentation generated on Thu, 24 May 2012 08:00:02 +0000 by phpDocumentor 1.4.3. PEAR Logo Copyright © PHP Group 2004.
|