我尝试将xdebug添加到我的PHP中。我从https://xdebug.org/download.php下载xdebug.dll
并将此dll添加到PHP中的ext
文件夹中。然后从PHP目录中打开php.ini
并添加以下行:
zend_extention="C:/Program Files (x86)/PHP/v7.2/ext/php_xdebug-2.6.0-7.2-
vc15-nts-x86_64.dll"
[xdebug]
xdebug.remote_enable=1
xdebug.remote_autostart = On
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
并重新启动Apach。
答案 0 :(得分:1)
我通过将我的下载dll重命名为xdebug.dll并在php.ini中添加zend_extension = xdebug解决了我的问题