|
1.安装了firefox
2.安装了firebug
3. 从http://www.firephp.org/DownloadRelease/FirePHPLibrary-FirePHPCore-0.2.1这里安装最新版本的firephp的source code 从里面抠出FirePHP.class.php,放置到application/libraries中,并且重命名为firephp.php
经过上述三步后
把下面的代码放在Controller里index方法里应该firefox的控制台里有效果的为什么没有。
$this->load->library('firephp');
$myvariable = array (
'language' => 'PHP',
'database' => 'MySQL',
'blogging platform' => 'WordPress',
'post' => 'CodeIgniter and FirePHP',
);
$this->firephp->log($myvariable);
|
|