PHPSTORM开启debug模式遇到的问题

首先是在php.ini中开启xdebug扩展

zend_extension = "D:\wnmp\php5.3.13\ext\php_xdebug-2.2.0-5.3-vc9.dll"

[xdebug]
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = on
xdebug.profiler_output_name = callgrind.out.%t-%p
xdebug.profiler_output_dir = "D:/wnmp/temp/xdebug"
xdebug.trace_output_dir = "D:/wnmp/temp/xdebug"

xdebug.remote_enable = on
xdebug.remote_handler = dbgp
xdebug.remote_host= localhost 
xdebug.remote_port = 7777 #端口号,可以自定义
xdebug.idekey = PHPSTORM  #key值,可以自定义

经常遇到的问题就是忘记开启remote_enable,记住一定要设置成on。

主要是在php.ini这段配置有时候容易找不到

你可能感兴趣的:(PHPSTORM开启debug模式遇到的问题)