Skip to content

Instantly share code, notes, and snippets.

@abenevaut
Last active March 9, 2024 22:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abenevaut/d011bfa6fa933b75776bff82908193cf to your computer and use it in GitHub Desktop.
Save abenevaut/d011bfa6fa933b75776bff82908193cf to your computer and use it in GitHub Desktop.
xdebug php 7.4 on windows
  • 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
;; 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