首先先下载xdebug的扩展
php.ini 配置
[XDebug]
zend_extension="D:\phpStudy\PHPTutorial\php\php-7.2.1-nts\ext\php_xdebug-3.0.4-7.2-vc15-nts.dll"
xdebug.idekey="PHPSTORM" # 非常重要,务必记住
;配置端口和监听的域名
xdebug.mode=debug
xdebug.discover_client_host=true
xdebug.remote_cookie_expire_time = 3600
xdebug.client_port=9000
xdebug.client_host="localhost"
xdebug.start_with_request=yes
xdebug.remote_handler = "dbgp"
phpstorm配置
在此处配置网址和端口。此时注意,网址指向的目录最好为根目录,不然调试失败,此处网址要和站点的网址和端口一致。