一、错误处理:
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);
四、基准测试类;
1、在控制器中,直接调用
$this->benchmark->mark('start');
$this->benchmark->mark('end');
echo $this->benchmark->elapsed_time('start','end');
输出start到end的时间。
2、在视图中添加<?php echo $this->benchmark->memory_usage();?>或者伪变量{memory_usage} 即可输出代码所用内存。
五、缓存驱动器:
示例:
$this->load->driver('cache',array('adapter'=>'apc','backup'=>'file'));
$mycache = $this->cache->get('my_first');
if(! $mycache){
$this->cache->save('my_first','测试1!',3);
$mycache = '侧四?';
}
var_dump($mycache);
var_dump(date('H:i:s',time()));
var_dump($this->cache->cache_info()); //获取所有缓存信息;
var_dump($this->cache->get_metadata('my_first')); //获取某缓存的保存时间;
六、日历类:
示例:
$prefs = array(
'start_day' => 'saturday',
'month_type' => 'long',
'day_type' => 'short'
);
$this->load->library('calendar',$prefs);
$data = array(
3 => 'http://example.com/news/article/2006/03/',
7 => 'http://example.com/news/article/2006/07/',
13 => 'http://example.com/news/article/2006/13/',
26 => 'http://example.com/news/article/2006/26/'
);
echo '<pre>';
echo $this->calendar->generate(2017,3,$data);
echo '</pre>';
七、购物车类:实际上是把数据存储到session中;
八、配置类:使用此功能,可以把要配置的业务需要配置的内容都放置到配置文件中;
1、加载自己的配置文件:$this->config->load('文件名',true);注意,文件名是config目录下的文件,若使用config的子文件夹,则“文件 夹名/文件名”。
2、修改配置信息:$this->config->set_item(键名,键值);
3、可以直接使用$this->config->site_url()等方法。
九、邮箱类:
1、首先要确保安装了邮件服务器,本人安装的是hMailServer;
2、示例代码如下:
//使用邮件
$this->load->library('email');
$this->email->from('linquan@ucpaas.com','林泉');
$this->email->to('1150895809@qq.com');
$this->email->cc('1150895809@qq.com');
$this->email->subject('测试邮件');
$this->email->message('林泉的帅气已经无人可挡!');
$this->email->send();
echo $this->email->print_debugger();
echo '<pre>';
echo '执行完毕!';
echo '<pre>';
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。