Home > Backend Development > PHP Tutorial > How to build ZendDebugger php debugging tool in WAMP environment_PHP tutorial

How to build ZendDebugger php debugging tool in WAMP environment_PHP tutorial

WBOY
Release: 2016-07-21 15:26:31
Original
780 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

The numbers in front of the folders represent the version of php. I am using 5.2.6, so I use 5_2_x_comp and copy the ZendDebugger.dll in this 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 the following lines of code at the bottom:

Copy Code The code is as follows:

[zend]
zend_extension_ts="D:softwampbinphpphp5.2.6extZendDebugger.dll"
zend_debugger.allow_hosts=127.0.0.1
zend_debugger.expose_remotely=always

Save and close, continue to view the contents of the downloaded ZendDebugger, find dummy.php, copy it to the www directory, this directory is at X:wampwww.

Restart wamp, open http://localhost/ and check if php has loaded the ZendDebugger extension. This means the installation is normal

The last thing is to configure ZendDebugger in the debugger. I won’t explain it in detail here, because some people use ZendStudio and some use EPP. It’s difficult for everyone to adjust, so you can explore it yourself.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323951.htmlTechArticleThe 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...
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