美文网首页
PHPstorm或IDEA 配置XDEBUG

PHPstorm或IDEA 配置XDEBUG

作者: xuanxiao | 来源:发表于2018-10-25 09:52 被阅读0次

    下载地址

    https://xdebug.org/download.php

    如不确定版本,可将phpinfo(),展示的信息全部复制放到

    将下载的xdebug放入对应路径

    配置php.ini

    在最后添加(IDEA也写PHPSTORM)

    [XDebug]

    zend_extension="D:\PHP\PhpStudy\PHPTutorial\php\php-7.0.12-nts\ext\php_xdebug-2.6.0-7.0-vc14-nts.dll"

    xdebug.idekey="PHPSTORM"

    xdebug.remote_handler = "dbgp"

    xdebug.remote_mode = "req"

    xdebug.remote_host=127.0.0.1

    xdebug.remote_enable=on

    xdebug.remote_port = 9001

    xdebug.remote_autostart = yes

    配置PHPstorm或IDEA

    打上断点,访问当前页面,debug成功

    相关文章

      网友评论

          本文标题:PHPstorm或IDEA 配置XDEBUG

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