美文网首页
php中使用xdebug注意事项

php中使用xdebug注意事项

作者: sorry510 | 来源:发表于2020-04-16 14:16 被阅读0次
    [Xdebug]
    zend_extension=xdebug
    xdebug.collect_params=1
    xdebug.collect_return=1
    xdebug.auto_trace=1
    xdebug.trace_output_dir="E:\UPUPW_NP7.2_64\xdebug\trace"
    xdebug.profiler_enable=0
    xdebug.profiler_output_dir="E:\UPUPW_NP7.2_64\xdebug\profiler"
    xdebug.max_nesting_level=100
    xdebug.remote_enable=1
    xdebug.remote_host=localhost
    xdebug.remote_port=9000
    xdebug.remote_handler=dbgp
    

    xdebug.auto_trace=1 1代表自动开启,0代表手动控制(可以使用浏览器的phpdebug扩展进行控制)
    xdebug.remote_host=localhost 注意localhost127.0.0.1是有区别的,不一致写法可能会导致无法debug

    相关文章

      网友评论

          本文标题:php中使用xdebug注意事项

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