WAMP Server中的php XDebug无法击中断点问题解决

闲话少说,打开php.ini文件,查找Xdebug关键字,在其中加入以下内容:

[xdebug]
zend_extension="c:/wamp64/bin/php/php7.2.18/zend_ext/php_xdebug-2.7.2-7.2-vc15-x86_64.dll"
xdebug.remote_enable = On
xdebug.profiler_enable = On
xdebug.profiler_enable_trigger = On
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="c:/wamp64/tmp"
xdebug.show_local_vars=0

xdebug.remote_handler = "dbgp"
xdebug.remote_host= localhost
xdebug.remote_port = 9000
xdebug.remote_autostart=1

比较重要的是最后一行的autostart,否则无法击中断点

你可能感兴趣的:(web)