firephp,第一次知道的时候,是在fleaphp的框架里,那时候,妖怪在里面引入了firephp的支持。
BTW:妖怪还第一次在国内的开源框架中引入了yaml的配置。果然妖。。
本文是YII官方的wiki文章,来自于:http://www.yiiframework.com/wiki/84/integrating-firephp/
-
Install Firebug plugin for Firefox from here.
-
Install FirePHP plugin for Firefox from here.
-
Download FirePHP package from here.
-
Extract 'FirePHPCoreXXX/lib/FirePHPCore' compressed folder to '/path/to/protected/components/FirePHPCore' folder.
-
At /path/to/index.php, after the line
PHP代码- $app = Yii::createWebApplication($config);
- if (YII_DEBUG){
- Yii::import("application.components.FirePHPCore.fb", true);
- }
- $app->run();
That's it! Now you can display your variables on FirePHP with a simple 'fb' command inside your PHP code:
fb($my_variable);
To view the results, open Firebug at 'console' tab and run your PHP file.
---------
不过我还没有仔细研究过,这个功能和Yii自带的WEBlog中的firebug支持有什么区别,还没有过多的研究,不发表意见。
------
看了一下源码,黑黑,突然发现,原来还可以这样玩console,嗯,又多了一个调试功能(和本文说的yii支持firephp无关)