What does “XDEBUG NOT LOADED AS ZEND EXTENSION” warning means?

后端 未结 5 1135
走了就别回头了
走了就别回头了 2021-02-07 09:14

Xdebug is loaded, but not loaded as a zend extension. What does it mean? How to resolve this problem?

5条回答
  •  轮回少年
    2021-02-07 09:43

    This error means that you used "extension=" to load Xdebug. That could be in your normal php.ini, or in a file called xdebug.ini that some distributions like to add. In any case, Xdebug needs to be loaded as a Zend extension for certain features such as single step debugging. As Xdebug is not meant to work as a normal extension, it might crash and burn too.

    The syntax for loading Xdebug as Zend extension depends on PHP version and build. I would suggest you use http://xdebug.org/wizard.php to provide you with the correct lines.

提交回复
热议问题