Home > Backend Development > PHP Tutorial > debugger How to build ZendDebugger php debugging tool in WAMP environment

debugger How to build ZendDebugger php debugging tool in WAMP environment

WBOY
Release: 2016-07-29 08:46:18
Original
919 people have browsed it

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

 在WAMP环境下搭建ZendDebugger php调试工具的方法

  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


Save and close, continue to view the downloaded ZendDebugger Find the stuff in dummy.php and copy it to the www directory. This directory is at X:wampwww.

 Restart wamp, open http://localhost/ and check whether the ZendDebugger extension is loaded in php. Like this, it means the installation is normal

 在WAMP环境下搭建ZendDebugger php调试工具的方法

 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.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template