|
本帖最后由 kkk 于 2010-5-29 10:18 编辑
1,前提条件:
1:安装最新版本的Firefox;
2:安装firebug;
3:从http://www.firephp.org/DownloadRelease/FirePHPLibrary-FirePHPCore-0.2.1这里安装最新版本的firephp的source code(权限原因发不了链接......)。
4:从里面抠出FirePHP.class.php,放置到application/libraries中,并且重命名为firephp.
2,使用:
PHP复制代码
$this->load->library('firephp');
$myvariable = array (
'language' => 'PHP',
'database' => 'MySQL',
'blogging platform' => 'WordPress',
'post' => 'CodeIgniter and FirePHP',
);
$this->firephp->log($myvariable);
复制代码
打开firebug的控制台,如无意外,你将会看到很漂亮的结果~~~
3,参数说明:
PHP复制代码 $this->firephp->log($myvariable) 复制代码
PHP复制代码 $this->firephp->warn($myvariable) 复制代码
PHP复制代码 $this->firephp->error($myvariable) 复制代码
都很简单,一目了然的功能。
还有,关闭调试功能,
PHP复制代码 $this->firepgp->setEnabled(FALSE). 复制代码
使用方法,比如根据IP来关闭或者启动该调试。
PHP复制代码
if($this->input->ip_address() =='1.2.3.4')
{
$this->firephp->setEnabled(TRUE);
}
else
{
$this->firephp->setEnabled(FALSE);
}
复制代码 |
|