有没有办法在Ubuntu 16.04上安装Xdebug for Php5? 我尝试以与ubuntu 14.04相同的方式安装它,但每次我尝试安装php5-dev时都会收到此错误“E:Package'php5-dev'没有安装候选者”
答案 0 :(得分:33)
您可以输入
来安装xdebugsudo apt-get install php-xdebug
然后只重启apache
sudo service apache2 restart
或者如果你使用NGINX
sudo systemctl restart nginx
或 sudo nginx restart
如果你现在看看你的phpinfo()输出,你应该看到xdebug。
如果你通过ppa安装了PHP 5.5或5.6,那也是好事:ondrej / php包
要通过apt-get安装PHP5版本,请查看此guid Ubuntu add ondrej/php
问候
编辑: 这里是Xdebug的配置,可以将它与PHPStorm和浏览器一起使用。
将以下行添加到/etc/php//apache2/conf.d/20-xdebug.ini
xdebug.remote_host = localhost
xdebug.remote_enable = 1
xdebug.remote_port = 9000
xdebug.remote_handler = dbgp
xdebug.remote_mode = req
这将仅在远程启动xdebug并允许您通过PHPStorm快速调试(也应该与其他IDE一起使用)