|
我想取得最终输出数据 保存到文件 从而实现静态化..
我定义了一个钩子在hooks.php
$hook['cache_override'][] = array(
'class' => 'staticCache',
'function' => 'displayCache',
'filename' => 'staticCache.php',
'filepath' => 'hooks',
'params' => ''
);
一个名为staticCache.php的类
<?php
class staticCache {
private $CI;
public function __construct() {
//
$this->CI =& get_instance();
}
public function displayCache() {
echo strlen($this->CI->output->get_output());
}
}
?>
$config['enable_hooks'] = TRUE;
打开页面什么都没有....是不是我这个类处理得不对...
手册页没有给出实例...感谢指点
[ 本帖最后由 xjflyttp 于 2008-9-8 22:09 编辑 ] |
|