我不确定如何让 FirePHP 捕捉错误和警告并在 Firebug 控制台中报告它们。
我已经安装了 FirePHP,我很确定它可以正常工作——我在控制台中看到了这些响应:
fb('Log message', FirePHP::LOG);
fb('Info message', FirePHP::INFO);
fb('Warn message', FirePHP::WARN);
fb('Error message', FirePHP::ERROR);
我基本上看到“日志消息”、“信息消息”、“警告消息”和“错误消息”。然后我更改了我的代码以故意破坏它——它从他们的日志中给了我这个:
[21-Jan-2013 22:19:49] PHP Warning: Missing argument 3 for
echo_first_image(), called in
/app/web/xxx/wp-content/themes/xxx/home.php on
line 85 and defined in
/app/web/xxx/wp-content/themes/xxx/functions.php
on line 12
我试图在 FirePHP 中捕捉并打印它,但它没有被检测到,我不知道为什么。我用于初始化 FirePHP 的完整代码块:
<?php /* debug */
require_once("debug/FirePHP.class.php");
require_once('debug/fb.php');
$firephp = FirePHP::getInstance(true);
ob_start();
fb('Log message', FirePHP::LOG);
fb('Info message', FirePHP::INFO);
fb('Warn message', FirePHP::WARN);
fb('Error message', FirePHP::ERROR);
?>
解释或资源会有所帮助。谢谢!