我刚购买了一台新电脑,并安装了Ubuntu 14. PHP,Apache,Mysql。一切都运行良好但x调试不适用于phpstorm。请帮我介绍如何安装x-debug并将其与phpstorm集成。
答案 0 :(得分:4)
首先,安装XDebug,假设您已经安装了Apache,PHP,MySQL的LAMP堆栈:
zend_extension="/usr/lib/php5/20121212/xdebug.so"
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.max_nesting_level=300
现在更新PHP.INI中的选项 - /etc/php5/apache2/php.ini
sudo service apache2 restart
重启Apache2,你准备好了!
UNION ALL
现在转到phpstorm - >设置 - >语言与框架 - > PHP - >调试
确保调试端口为9000
现在按开始监听php调试连接按钮(电话接收器图标)
享受调试......:)