本文整理汇总了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);
}