2010年6月4日 星期五

[CI ]安裝firePHP

1,前提條件:

1:安裝最新版本的Firefox;
2:安裝Firebug 1.5.4 (Standard);
3:從http://www.firephp.org/DownloadRelease /FirePHPLibrary-FirePHPCore-0.2.1這裡安裝最新版本的firephp的source code(權限原因發不了鏈接......)。
4:從裡面摳出FirePHP.class.php,放置到application/libraries中,並且重命名為firephp.

2,使用:

$this->load->library('firephp');
$myvariable = array (
'language' => 'PHP',
'database' => 'MySQL',
'blogging platform' => 'WordPress',
'post' => 'CodeIgniter and FirePHP',
);
$this->firephp->log($myvariable);


打開firebug的控制台,如無意外,你將會看到很漂亮的結果~~~
3,參數說明:

$this->firephp->log($myvariable);
$this->firephp->warn($myvariable);
$this->firephp->error($myvariable);
//關閉調試功能
$this->firepgp->setEnabled(FALSE).
//根據IP來關閉或者啟動該調試
if($this->input->ip_address() =='127.0.0.1')
{
$this->firephp->setEnabled(TRUE);
}
else
{
$this->firephp->setEnabled(FALSE);
}

【下列文章您可能也有興趣】

沒有留言: