phpstorm xdebug的安装

下载对应php版本的xdebug

https://xdebug.org/wizard

phpstorm xdebug的安装_第1张图片

配置php.ini信息(参考)


zend_extension = D:\phpStudy\PHPTutorial\php\php-7.2.1-nts\ext\php_xdebug-2.9.4-7.2-vc15-nts.dll
xdebug.remote_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_mode=req
xdebug.remote_handler=dbgp
xdebug.idekey="PHPSTORM"

你可能感兴趣的:(php,xdebug)