我想用FirePHP在Firebug Console 中输出一个简单的字符串。
我在 index.php :
中进行了简单的测试require_once('../system/lib/FirePHPCore/FirePHP.class.php');
$firephp = FirePHP::getInstance(true);
$var = array('i'=>10, 'j'=>20);
$firephp->log($var, 'Iterators');
然后我登录控制台:
但是当我在另一个文件中添加一些额外的firephp日志 b_product_settings.php
class prdsetActions extends ActionsController {
function save_product(){
global $firephp;
$firephp->log('save_product_started11');
...
}
...
}
并从 index.php 调用 save_product(),然后我只看到控制台标签中的第一个日志字符串
和 Net 标签中的 X-Wf-1-1-1 - 两个字符串
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Connection keep-alive
Content-Type text/html; charset=UTF-8
Date Thu, 19 Feb 2015 13:16:25 GMT
Expires Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified Thu, 19 Feb 2015 13:16:25GMT
Location /published/SC/html/scripts/index.php?ukey=product_settings&productID=1&search=yes&did=109&msg=9uzr
P3P CP="CAO PSA OUR"
Pragma no-cache
Server nginx/1.2.1
Transfer-Encoding chunked
X-Wf-1-1-1-1 165|[{"Type":"LOG","Label":"Iterators","File":"\/var\/www\/site.com\/published\/SC\/html\/scripts\/index.php","Line":"19"},{"i":"10","j":"20"}]|
X-Wf-1-1-1-2 191|[{"Type":"LOG","File":"\/var\/www\/site.com\/published\/SC\/html\/scripts\/modules\/products\/_methods\/b_product_settings.php","Line":"9"},"save_product_started11"]|
X-Wf-1-Index 2
X-Wf-1-Plugin-1 http://meta.firephp.org/Wildfire/Plugin/FirePHP/Library-FirePHPCore/0.3
X-Wf-1-Structure-1 http://meta.firephp.org/Wildfire/Structure/FirePHP/FirebugConsole/0.1
X-Wf-Protocol-1 http://meta.wildfirehq.org/Protocol/JsonStream/0.2
为什么第二个firephp日志不在控制台标签中?请给我任何建议。我陷入了僵局。
答案 0 :(得分:0)
将Firefox更新为37.0
时,此错误消失了