《PHPStorm 开启 PHP 调试模式》要点:
本文介绍了PHPStorm 开启 PHP 调试模式,希望对您有用。如果有疑问,可以联系我们。
首先把 xdebug.dll 放到 当前PHP版本中的 ext 文件中(xdebug.dll 需和你当前所使用的PHP版本保持一致)
[XDebug]
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir ="E:\PHPStudy\tmp\xdebug"
xdebug.trace_output_dir ="E:\PHPStudy\tmp\xdebug"
;cache.out.1470471708-E__WWW_YCPX20160720_demoTest_del_1_PHP
xdebug.profiler_output_name = "cache.out.%t-%s"
zend_extension="E:\PHPStudy\PHP53\ext\xdebug.dll"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9000
xdebug.idekey = PHPSTORM
http://blog.163.com/yong5123@126/blog/static/4551606220167681422210/
@H_404_93@《PHPStorm 开启 PHP 调试模式》是否对您有启发,欢迎查看更多与《PHPStorm 开启 PHP 调试模式》相关教程,学精学透。编程之家 jb51.cc为您提供精彩教程。