Xdebug installation
When downloading the xdebug extension, please note that the xdebug version corresponds to the php version, otherwise unnecessary trouble will occur!
I use PHP5.2.5 myself. The downloaded xdebug file is named: php_xdebug-2.0.3-5.2.5.dll. Just put the file in the php/ext folder
3. Configure
xdebug configuration
Open php.ini
Add the following configuration code to the last line, the configuration instructions have been commented
; Load Xdebug
zend_extensi
; If you use a relative path, you can write it like this
; extension= "php_xdebug-2.0.4-5.2.8.dll "
; xdebug configuration
[Xdebug]
; Turn on automatic tracing
xdebug.auto_trace = On
; Turn on exception tracing
xdebug.remote_enable = On
; Collect variables
xdebug.collect_vars = On
; Collect return values
xdebug.collect_return = On
; Collect parameters
zend_extension_manager.optimizer_ts="f:ServerCorelibOptimizer-3.3.0"
;zend_extensi
zend_extensi
was successful, other ways of writing are not good
The above introduces the installation and use of dejavu fiberwig php Xdebug debugging extension, including the content of dejavu fiberwig. I hope it will be helpful to friends who are interested in PHP tutorials.