我已经改变了环境。
我以前使用过XAMPP,并且运行良好。但是当我改用纯PHP和Apache 2时,我的Eclipse Photon停止了识别我的Xdebug安装。
但是它已安装。而且它不起作用。
我的phpinfo()
向我显示:
This program makes use of the Zend Scripting Language Engine:
Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.1.22-1+ubuntu18.04.1+deb.sury.org+1, Copyright (c) 1999-2018, by Zend Technologies
with Xdebug v2.6.1, Copyright (c) 2002-2018, by Derick Rethans
在我的php.ini(/etc/php/7.1/apache2/php.ini)中,我添加了以下信息:
zend_extension=/usr/lib/php/20160303/xdebug.so
xdebug.remote_enable=true
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="/tmp"
此文件存在/usr/lib/php/20160303/xdebug.so
有什么问题吗?