我想我已经在 Kohana 3.1 中成功安装了 FirePHP 模块,但我没有得到任何输出到 FireBug 控制台。
我试过这个:
FirePHP::log('test');
并得到这个错误:
Non-static method FirePHP::log() should not be called statically, assuming $this from incompatible context.
当我关闭模块并手动运行 FirePHP 时:
require_once('FirePHPCore/fb.php');
fb('test');
控制台中没有显示任何内容。