美文网首页
PhpStorm配置xDebug

PhpStorm配置xDebug

作者: 雨哥 | 来源:发表于2019-02-08 21:18 被阅读0次

    记录下配置,这个是可以正常运行的。

    php.ini配置文件

    [xdebug]

    zend_extension ="d:/wamp64/bin/php/php5.6.25/zend_ext/php_xdebug-2.4.1-5.6-vc11-x86_64.dll"

    xdebug.remote_enable = 1

    xdebug.remote_handler = dbgp

    xdebug.remote_mode = req

    xdebug.remote_host = localhost

    xdebug.remote_port = 9000

    xdebug.idekey = "PHPSTORM"

    xdebug.profiler_enable = off

    xdebug.profiler_enable_trigger = off

    xdebug.profiler_output_name = cachegrind.out.%t.%p

    xdebug.profiler_output_dir ="d:/wamp64/tmp"

    xdebug.show_local_vars=0

    phpStorm配置

    postman可以带debug参数来实现调试不同页面。

    相关文章

      网友评论

          本文标题:PhpStorm配置xDebug

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