Created
May 11, 2024 14:01
-
-
Save Remzi1993/3df76129835feecf91dca5c0cf197853 to your computer and use it in GitHub Desktop.
Instructions to install Xdebug on Windows
This file contains 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
Instructions to install Xdebug on Windows | |
1. Download php_xdebug-3.3.2-8.3-vs16-x86_64.dll (for thread safe PHP) | |
2. Move the downloaded file to C:\php\ext, and rename it to php_xdebug.dll | |
3. Update C:\Program Files\PHP\8.3.7\php.ini and add the line: | |
zend_extension = xdebug (this only works if extension_dir = "ext" is enabled in php.ini) | |
Otherwise use full path: zend_extension = "C:\Program Files\PHP\8.3.7\ext\php_xdebug.dll" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment