The thing is not new, so I won’t introduce it. The following is mainly the configuration process.
First, download ZendDebugger, download link: http://downloads.zend.com/pdt/server-debugger/, because I am a win system, so I just look for the one ending in .zip. I downloaded ZendDebugger-5.2. 14-cygwin_nt-i386.zip
Then unzip and see these directories
The numbers in front of those folders represent the version of php. I am using 5.2.6, so I use 5_2_x_comp, and put this Copy the ZendDebugger.dll in the folder to the ext folder in the php directory, then open php.ini (remember, the php.ini under wamp is in the X:wampbinapacheapache2.2.8bin directory), and add it at the bottom The following lines of code:
Copy the code The code is as follows:
[zend]
zend_extensi
zend_debugger.allow_hosts=127.0.0.1
zend_debugger.expose_remotely=always
Restart wamp, open http://localhost/ and check whether the ZendDebugger extension is loaded in php. Like this, it means the installation is normal
Finally, you need to configure ZendDebugger in the debugger. I will not explain it in detail here. Because some people use ZendStudio and some people use EPP, it’s hard to agree with each other, so just explore it yourself.
The above introduces the debugger method of building the ZendDebugger php debugging tool in the WAMP environment, including the debugger aspect. I hope it will be helpful to friends who are interested in PHP tutorials.