让 FirePHP 在 Kohana 3.1 中工作
我想我已经在 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');
控制台中没有显示任何内容。
I think I've successfully installed the FirePHP module in Kohana 3.1 but I'm not getting any output to the FireBug console.
I've tried this:
FirePHP::log('test');
and got this error:
Non-static method FirePHP::log() should not be called statically, assuming $this from incompatible context.
When I turn off the module and run FirePHP manually:
require_once('FirePHPCore/fb.php');
fb('test');
Nothing shows up in the console.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如异常消息所示,您不应该静态调用该方法,而是像:
几天前添加了静态 Fire 辅助类,所以现在您可以执行以下操作:
https://github.com/kemo/kohana-firephp
另一个可能的问题可能是 Firebug 1.8,因为当前的 FirePHP 附加版本无法使用它。您可以在此处更新您的插件
As the exception message says, you shouldn't call that method statically, but like :
Few days ago static Fire helper class was added, so now you can do:
https://github.com/kemo/kohana-firephp
Another possible problem can be Firebug 1.8 because the current FirePHP add-on version doesn't work with it. You can update your add-on here