PHP登录本机控制台Firefox Developer

时间:2015-06-04 09:04:11

标签: firefox-developer-tools firefox-developer-edition

我非常喜欢firefox开发人员检查员,而不是萤火虫检查员。

但是可以在原生JS控制台中显示PHP日志吗?

谢谢:)

1 个答案:

答案 0 :(得分:2)

我刚刚使用github安装了Chrome Logger(website | Chrome PHP)以在Chrome中完成此操作,因为Firefox 50+打破了FirePHP。然后我了解到Firefox的Web控制台自v43(https://developer.mozilla.org/en-US/docs/Tools/Web_Console/Console_messages#Server)以来一直支持Chrome Logger。

简而言之,是的,您可以使用Chrome PHP将PHP变量记录到Firefox Web控制台。就这么简单:

  1. 下载最新的Chrome PHP库: https://github.com/ccampbell/chromephp
  2. 将其包含在您的项目中(include 'ChromePhp.php';
  3. 在php脚本中记录一些内容(ChromePhp::log($_MyArray);
  4. 打开Firefox网络控制台并启用服务器标签(https://developer.mozilla.org/en-US/docs/Tools/Web_Console/Console_messages#Filtering_by_category
  5. 希望这会有所帮助。在发现新版本支持Firefox之前,我拖延了几年升级Firefox。