首页 > 代码库 > ubuntu下PHP配置Xdebug

ubuntu下PHP配置Xdebug

ubuntu下PHP配置Xdebug


 

1,安装 php5-xdebug

sudo apt-get install php5-xdebug

 

2,修改php.ini 配置

  打开:/etc/php5/mods-available/xdebug.ini

  加入下列:

xdebug.remote_enable=1//是否允许远程终端 这里标示开启xdebug.remote_handler=dbgpxdebug.remote_mode=reqxdebug.remote_host=localhostxdebug.remote_port=9001//这里表示服务器的监听端口xdebug.idekey="PHPSTORM";//这里是调试器的关键字 在Chrome以及FireFox中插件配置的时候要用到

 

  

 php -m  查看php生效配置。

 

3,配置phpstorm

 

  修改    PHP > Debug > DBGp proxy:


 

 

4,配置游览器

  打开chrom游览器

  安装 扩展工具 Xdebug helper

  点击phpstrom 和游览器的 小虫子按钮使它变绿。

  测试成功!!!!!!!!!!!!!!!!!  


 

ubuntu下PHP配置Xdebug