- go to https://xdebug.org/download/historical
- download php_xdebug-3.1.6-7.4-vc15-nts-x86_64.dll
- paste to c:\PATH_TO_PHP\ext
- rename php_xdebug-3.1.6-7.4-vc15-nts-x86_64.dll to php_xdebug.dll
Last active
August 9, 2024 07:59
-
-
Save abenevaut/d011bfa6fa933b75776bff82908193cf to your computer and use it in GitHub Desktop.
xdebug php 7.4 on windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Add to your php ini | |
[XDebug] | |
zend_extension=php_xdebug.dll | |
xdebug.start_with_request=yes | |
xdebug.mode=develop,debug,coverage | |
xdebug.discover_client_host=0 | |
xdebug.client_host=127.0.0.1 | |
xdebug.idekey=PHPSTORM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment