PHP_CI框架

一、错误处理:

 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);

PHP_CI框架_第1张图片

















你可能感兴趣的:(message,控制器,false)