我试图在xamp上安装xdebug
-I已在C:\ xampp \ php \ ext
上安装了php_xdebug-2.6.0-7.0-vc14-nts-x86_64.dll-I已在php.ini上禁用输出缓冲
output_buffering=Off
- 我已经在php.ini
上复制了这个文本[XDebug]
zend_extension = "c:\xampp\php\ext\php_xdebug-2.6.0-7.0-vc14-nts-x86_64.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 0
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "c:\xampp\tmp"
;xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_log="c:\xampp\tmp\xdebug.txt"
xdebug.remote_port = 9000
xdebug.trace_output_dir = "c:\xampp\tmp"
; 3600 (1 hour), 36000 = 10h
xdebug.remote_cookie_expire_time = 36000
- 我重启了apache
但是xdebug并没有出现在phpinfo()
中