实际上有这个问题,并花了我很多时间来找出解决方案:(如果安装了以前的任何PHP版本,请确保首先完全摆脱它们。如果需要清除并重新安装apache2和php7)
第一
> sudo apt-get install php-xdebug
然后编辑php 7的php.ini文件:
> sudo gedit /etc/php/7.0/apache2/php.ini
并在底部添加:
xdebug.remote_enable = On
保存当然然后:
> sudo service apache2 restart
答案 0 :(得分:2)
wget -c "http://xdebug.org/files/xdebug-2.4.0.tgz"
tar -xf xdebug-2.4.0.tgz
cd xdebug-2.4.0/
phpize
./configure
make && make install
echo "zend_extension=xdebug.so" > /etc/apache2/mods-available/xdebug.ini
ln -sf /etc/apache2/mods-available/xdebug.ini /etc/apache2/mods-enabled/20-xdebug.ini
ln -sf /etc/apache2/mods-available/xdebug.ini /etc/apache2/mods-enabled/20-xdebug.ini
service php7.0-fpm restart
php -m | grep -i xdebug
xdebug
Xdebug