Manual configuration and use of XDebug in Windows _ PHP Tutorial

Source: Internet
Author: User
Manual configuration and usage of XDebug in Windows. 1. download XDebug binary file: www. xdebug. orgdownload. php5.2www. xdebug. orgfilesphp_xdebug-2.1.0-5.2-vc6.dll5.3www.xdebug.orgfilesphp_xdebug-2.1.0-5.3 1. download XDebug binary file: http://www.xdebug.org/download.php
5.2 http://www.xdebug.org/files/php_xdebug-2.1.0-5.2-vc6.dll
5.3 http://www.xdebug.org/files/php_xdebug-2.1.0-5.3-vc6.dll
2. find php. ini.
3. if ZendOptimizer has been configured, you need to first block configurations related to ZendOptimizer, which are generally as follows:
[Zend]
Zend_extension_manager.optimizer_ts = "path \ ZendOptimizer-3.3.0 \ lib \ Optimizer-3.3.0"
Zend_extension_ts = "path \ ZendOptimizer-3.3.0 \ lib \ ZendExtensionManager. dll"
4. add the XDebug configuration:
Zend_extension_ts = "path/xdebug/php_xdebug-2.1.0-5.2-vc6.dll"
[Xdebug]
Xdebug. profiler_enable = on
Xdebug. trace_output_dir = "path \ xdebug"
Xdebug. profiler_output_dir = "path \ xdebug"
Xdebug. remote_enable = on
Xdebug. remote_handler = dbgp
Xdebug. remote_host = localhost
Xdebug. remote_port = 9000
Note: the above "path" must be changed to your local path.
5. restart Apache or IIS.
6. view the output of phpinfo. if the XDebug option is displayed, the configuration is successful.
The following is an article by other netizens:
1. install the xdebug module
1. go to www.xdebug.org to download the php module file of the corresponding version, save the downloaded file to the php ext directory, and modify the file name by yourself, for example, save it as php_xdebug.dll.
2. modify php. ini and add the following information:

The code is as follows:


[Xdebug]
Zend_extension_ts = "c:/webserver/php5/ext/php_xdebug.dll"
Xdebug. auto_trace = on
Xdebug. collect_params = on
Xdebug. collect_return = on
Xdebug. trace_output_dir = "c:/webserver/php5/debuginfo"
Xdebug. profiler_enable = on
Xdebug. profiler_output_dir = "c:/webserver/php5/debuginfo"


Parameter description:
Zend_extension_ts = "c:/webserver/php5/ext/php_xdebug.dll"
Load the xdebug module. You cannot use the extension = php_xdebug.dll method to load the file. you must use the zend method to load the file. otherwise, phpinfo cannot display the xdebug item after installation.
Xdebug. auto_trace = on;
Automatically enable the "Monitor function call process" module. This function outputs the monitoring information of function calls in a file in the specified directory. The default value of this configuration item is off.
Xdebug. collect_params = on;
To enable the function of collecting "function parameters. Include the parameter values of function calls in the monitoring information of function process calls. The default value of this configuration item is off.
Xdebug. collect_return = on
; Enable the function to collect "function return values. Include the return value of a function in the monitoring information of function call. The default value of this configuration item is off.
Xdebug. trace_output_dir = "c: \ Temp \ xdebug"
Set the path of the output file of the function call monitoring information.
Xdebug. profiler_enable = on
; Enable the Performance Monitor.
Xdebug. profiler_output_dir = "c: \ Temp \ xdebug ";
Set the path of the output file of performance monitoring information.
There are some more specific parameter settings, see: http://www.xdebug.org/docs-settings.php
3. restart apache
In this way, when running php locally, some debugging information files will be generated in the set Directory:
The file name format of the function call process monitoring information file is trace. ×××××. xt. This file can be viewed directly. it contains information such as the function running time, function call parameter value, return value, and file and location. The content format is relatively intuitive.
File name format of the performance monitoring File: cachegrind. out. ×××××××.
This file can also be viewed directly, but the information format is not easily understood by humans,
So we need the next software.
II. install wincachegrind
Because the content of the performance monitoring file cachegrind. out. ×××××××× is not easily understood by humans, we need a tool to read it. Windows has such a software: wincachegrind.
1. go to http://sourceforge.net/projects/wincachegrind/download and install wincachegrind
2. after installing and running the tool, Click Tools> options to set the value of xdebug. profiler_output_dir in your working folder (php. ini)
In this way, you can intuitively view the information of the performance monitoring file.

Http://www.bkjia.com/PHPjc/322065.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/322065.htmlTechArticle1. download XDebug binaries: http://www.xdebug.org/download.php 5.2 http://www.xdebug.org/files/php_xdebug-2.1.0-5.2-vc6.dll 5.3 http://www.xdebug.org/files/php_xdebug-2.1.0-5.3...

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.