No xdebug in phpinfo()

后端 未结 11 1576
故里飘歌
故里飘歌 2020-12-19 01:03

I have added following lines into php.ini

[XDebug]
zend_extension = C:\\PROGRA~1\\PHP5\\ext\\php_xdebug-2.1.0-5.3-vc9.dll
xdebug.remote_enable=on
xdebug.remo         


        
11条回答
  •  不思量自难忘°
    2020-12-19 01:08

    This worked for me (vscode, xampp) Go to https://xdebug.org/wizard.php and paste the contents of phpinfo()

    Then download the right xdebug.dll and place it in your 'ext' folder.

    Add the following to your php.ini

    [XDebug]
    zend_extension="php_xdebug-2.5.4-7.0-vc14.dll"
    xdebug.remote_enable=1
    xdebug.remote_autostart=1
    

提交回复
热议问题