我在哪里可以更改Xdebug的设置?

时间:2018-02-09 05:51:54

标签: php debugging xdebug remote-debugging

phpinfo()显示配置的路径:/etc/php5/apache2/conf.d/20-xdebug.ini

但该文件只包含一个字符串:zend_extension=xdebug.so

文件usr/lib/php5/20100525/xdebug.so如下所示:

enter image description here

在php.ini中,没有包含“xdeb”或“remote_connect”

的行

UP:我需要什么? phpinfo()表示xdebug.remote_connect_back设置已关闭。我需要打开它。

1 个答案:

答案 0 :(得分:1)

只需填写/etc/php5/apache2/conf.d/20-xdebug.ini,例如:

zend_extension=xdebug.so
xdebug.remote_enable=1
xdebug.remote_connect_back=1
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.max_nesting_level=10000
;...

然后重启apache。 xdebug中的所有设置均可用here