无法在窗口7上的apache 2.4上为php 7.2安装xdebug

时间:2018-05-21 14:53:15

标签: php apache

我尝试将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。

当我在这台服务器上运行phpinfo()时,没有关于xdebug的信息 enter image description here

1 个答案:

答案 0 :(得分:1)

我通过将我的下载dll重命名为xdebug.dll并在php.ini中添加zend_extension = xdebug解决了我的问题