一、错误处理:
1、show_error(‘错误信息‘,‘错误编号‘,‘错误标题‘);
2、log_message($level, $message, $php_error = FALSE);写错误日志,需要修改config.php的threshold。
二、缓存页面:
1、开启缓存:将$this->output->cache($n)置于控制器任意位置,$n为分钟数;
2、代码删除缓存:$this->output->delete_cache();
三、程序分析:
1、启动分析器:$this->output->enable_profiler(true);
2、启动分析器:$this->output->enable_profiler(false);
3、启动和禁用分析器字段:
(1)修改config/profiler.php,如:$config[‘queries‘] = true;
(2)控制器调用输出类覆盖:$this->output->set_profiler_sections($arr);
本文出自 “维塔罗” 博客,请务必保留此出处http://1150895809.blog.51cto.com/9164250/1771267
原文地址:http://1150895809.blog.51cto.com/9164250/1771267