美文网首页PHP干货分享
PHPSTORM开启debug模式遇到的问题

PHPSTORM开启debug模式遇到的问题

作者: JUNE言JUNE语 | 来源:发表于2017-05-08 11:06 被阅读539次

    首先是在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模式遇到的问题

        本文链接:https://www.haomeiwen.com/subject/lkjmtxtx.html