第一步:查看PHP版本信息
第二步:到xdebug下载页去下载最新的版本(注意:要下载PHP对应版本)
第三步:把扩展php_xdebug-2.7.0alpha1-7.2-vc15-nts.dll放到php的扩展目录(ext文件中)
我的路径为:D:\phpStudy\PHPTutorial\php\php-7.2.1-nts
第四步:打开php.ini文件,配置如下:
[XDebug]
;声明扩展dll位置
zend_extension=php_xdebug-2.7.0alpha1-7.2-vc15-nts.dll
;下面的内容为atom编辑器所需配置
xdebug.remote_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_connect_back=1 # Not safe for production servers
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.remote_mode&#