下载地址
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成功
网友评论