我想使用 blackfire 来分析 symfony 的 php 命令。我按照这里的入门部分https://blackfire.io/getting-started for mac os。
然后我用这个内容创建一个文件 test.php 来测试 blackfire:
<?php
echo "Hello World !";
但是当我这样做时
blackfire run php test.php
发生错误:
PHP Warning: PHP Startup: blackfire: Unable to initialize module
Module compiled with module API=20131226
PHP compiled with module API=20121212
These options need to match
in Unknown on line 0
Warning: PHP Startup: blackfire: Unable to initialize module
Module compiled with module API=20131226
PHP compiled with module API=20121212
These options need to match
in Unknown on line 0
如果我删除我的 php.ini 的以下代码,我没有任何错误,但 blackfire 不给我 url 来查看调试结果
[blackfire]
extension="/usr/local/Cellar/blackfire-php56/1.0.0/blackfire.so"
blackfire.agent_timeout = 0.25
有人能帮助我吗 ?