Xdebug for Php 5.6 on Ubuntu 16.04

2022-08-30 15:18:42

有没有办法在Ubuntu 16.04上安装Xdebug for Php5?我试图以与ubuntu 14.04相同的方式安装它,但每次我尝试安装php5-dev时,我都会收到此错误“E:软件包'php5-dev'没有安装候选项”


答案 1

您可以通过输入来安装xdebug

sudo apt-get install php-xdebug

然后只重新启动 apache

sudo service apache2 restart

或者如果你使用NGINX

sudo systemctl restart nginx

或 sudo nginx restart

如果你现在看一下你的phpinfo()输出,你应该看到xdebug。

如果您通过 ppa:ondrej/php 软件包安装了 PHP 5.5 或 5.6,则为

要通过 apt-get 安装 PHP5 版本,请查看此 guid Ubuntu 添加 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一起使用)


答案 2

推荐