本文整理匯總了PHP中cache::func方法的典型用法代碼示例。如果您正苦於以下問題:PHP cache::func方法的具體用法?PHP cache::func怎麽用?PHP cache::func使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cache
的用法示例。
在下文中一共展示了cache::func方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: show
public final function show()
{
if (func_num_args() > 0) {
$args = func_get_args();
if (count($args) == 1 && is_array($args[0])) {
$this->setValues($args[0]);
} else {
$this->setValues($args);
}
}
if ($this->nocache) {
echo $this->generate();
return;
}
$fname = get_class($this) . '->show';
$sname = base64_encode(gzcompress(serialize(array(get_class($this), spl_object_hash($this), 'show', $this->values))));
$value = cache::checkFunc($fname, $sname, $result);
if ($result === true) {
if (strlen($value['output']) > 0) {
echo $value['output'];
}
return $value['result'];
}
$r = null;
ob_start();
echo $this->generate();
$output = ob_get_contents();
ob_end_flush();
return cache::func($fname, $sname, $r, $output);
}
示例2: __callStatic
/**
* Magic method to enable automatic caching of static functions.
*/
public static function __callStatic($name, $args)
{
$realName = '_' . $name;
$class = get_called_class();
if (method_exists($class, 'cache_' . $name) || method_exists($class, 'ov_cache_' . $name)) {
$fname = $class . '::' . $name;
$sname = base64_encode(gzcompress(serialize(array($class, $name, $args))));
$value = cache::checkFunc($fname, $sname, $result);
if ($result === true) {
if (strlen($value['output']) > 0) {
echo $value['output'];
}
return $value['result'];
}
ob_start();
if (method_exists($class, 'ov_cache_' . $name)) {
$r = parent::__callStatic('cache_' . $name, $args);
} else {
$r = call_user_func_array(array($class, 'cache_' . $name), $args);
}
$output = ob_get_contents();
ob_end_flush();
return cache::func($fname, $sname, $r, $output);
}
return parent::__callStatic($name, $args);
}