PHPstorm或IDEA 配置XDEBUG

下载地址

https://xdebug.org/download.php

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


PHPstorm或IDEA 配置XDEBUG_第1张图片
PHPstorm或IDEA 配置XDEBUG_第2张图片

将下载的xdebug放入对应路径


PHPstorm或IDEA 配置XDEBUG_第3张图片

配置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 配置XDEBUG_第4张图片

配置PHPstorm或IDEA


PHPstorm或IDEA 配置XDEBUG_第5张图片
PHPstorm或IDEA 配置XDEBUG_第6张图片
PHPstorm或IDEA 配置XDEBUG_第7张图片
PHPstorm或IDEA 配置XDEBUG_第8张图片
PHPstorm或IDEA 配置XDEBUG_第9张图片

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


PHPstorm或IDEA 配置XDEBUG_第10张图片

你可能感兴趣的:(PHPstorm或IDEA 配置XDEBUG)