phpinfo()
显示配置的路径:/etc/php5/apache2/conf.d/20-xdebug.ini
但该文件只包含一个字符串:zend_extension=xdebug.so
文件usr/lib/php5/20100525/xdebug.so
如下所示:
在php.ini中,没有包含“xdeb”或“remote_connect”
的行 UP:我需要什么? phpinfo()
表示xdebug.remote_connect_back
设置已关闭。我需要打开它。
答案 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