标签:style blog http color os sp strong on div
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=dbgp xdebug.remote_mode=req xdebug.remote_host=localhost xdebug.remote_port=9001//这里表示服务器的监听端口 xdebug.idekey="PHPSTORM";//这里是调试器的关键字 在Chrome以及FireFox中插件配置的时候要用到
php -m 查看php生效配置。
3,配置phpstorm
修改 PHP > Debug > DBGp proxy:
4,配置游览器
打开chrom游览器
安装 扩展工具 Xdebug helper
点击phpstrom 和游览器的 小虫子按钮使它变绿。
测试成功!!!!!!!!!!!!!!!!!
标签:style blog http color os sp strong on div
原文地址:http://www.cnblogs.com/canbefree/p/4143351.html