search
HomeBackend DevelopmentPHP TutorialDetailed explanation of PHP debugging and performance analysis tool Xdebug

The following editor will bring you a detailed explanation of the PHP debugging and performance analysis tool Xdebug. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor and take a look.

During the program development process, the most commonly used debugging method is to print statements using echo, print_r(), var_dump(), printf(), etc. The execution efficiency of PHP scripts is usually the script execution time. The efficiency of database SQL is usually the database Query time, but this cannot truly locate and analyze the bottlenecks of script execution and database queries? In this regard, there is a PHP program debugger (ie a Debug tool) called Xdebug (www.xdebug.org), which can be used to track, debug and analyze the running status of PHP programs.

1. A brief introduction to the installation of this module on the windows platform:

1. Download the XDebug extension for PHP, URL: http://xdebug.org/ (This depends on the PHP version you are currently using);

2. Will download the module (php_xdebug-2.0.5-5.2. dll) into the ext directory of PHP installation;

3. Configure the php.ini file and add the following lines

**** ************************************

extension=php_xdebug-2.0.5-5.2. dll
[Xdebug]
xdebug.profiler_enable=on
xdebug.trace_output_dir="E:/Projects/xdebug" #Directory where Xdebug output data files are placed
xdebug.profiler_output_dir="E:/ Projects/xdebug"
********************************************** *************

4. Restart the Apache server. Finish! ! !

5. If xdebug is seen in the output content, it means the installation and configuration are successful.

6. Under the Windows platform, you can use the client (Windows): WinCacheGrind WinCacheGrind to open these files. The content can be displayed more intuitively:

## 2. A brief introduction using the Linux platform:


1. Compile and install XDebug under Linux

[root@localhost src]# tar -xvf xdebug-2.0.5

[root@localhost xdebug -2.0.5]# /usr/local/php/bin/phpize
[root@localhost xdebug-2.0.5]# ./configure --enable-xdebug --with-php-config=/usr/locar /php/bin/php-config
[root@localhost xdebug-2.0.5]# make
can copy the generated xdebug.so to the path directory pointed by extension_dir.

2. Configuration

vi /usr/local/php/lib/php.ini Modify php.ini, remove the PHP acceleration module, and add the following configuration information to support XDebug Extension

#extension=vld.so //It is the module that outputs OPCODES
extension=xdebug.so
[Xdebug]
xdebug.profiler_enable=on
xdebug.trace_output_dir="/tmp/ xdebug"
xdebug.profiler_output_dir="/tmp/xdebug"
xdebug.profile_output_name="script"

Note: You can also use [root@localhost xdebug-2.0.5]# /usr/ local/php/bin/php -m List all extension modules

3. Restart the WEB server

[root@localhost xdebug-2.0.5]# service httpd restart OK!!!

The Xdebug tool will write the tracked error information into the output data file in the form of a diary, which can be viewed in the file, but in order to be more intuitive, there is also a graphical interface tool to analyze the traced journal records. WinCacheGrind (wincachegrind.souceforge.net) This software can be installed directly. From the graphics window, the structure of the entire program, the number of times each function is called, and the execution time can be clearly seen. Very professional and convenient! ! !

Summary: overall system performance.

The above is the entire content of this article, I hope it will be helpful to everyone's study.


Related recommendations:

php Xdebug debugging

php5.6.34 installation Xdebug

phpstorm xdebugRealizing breakpoint debuggingphp

The above is the detailed content of Detailed explanation of PHP debugging and performance analysis tool Xdebug. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

在生产服务器上启用XDebug会使PHP变慢吗?在生产服务器上启用XDebug会使PHP变慢吗?Sep 22, 2023 pm 10:41 PM

是的,像XDebug这样的调试器会降低PHP服务器的性能。这就是调试器不放置在服务器环境中的原因。它们部署在不同的环境中,以避免不必要的开销。调试消息无法在已处于生产阶段的应用程序中显示。当将调试行为添加到服务器上,调试引擎附加到PHP进程。它开始接收消息以在断点处停止,但这不是必需的行为,因为它会给其他进程带来高性能打击,从而停止PHP解析器。另一方面,当调试器安装后,它们往往会在服务器中打开端口,因为它们不打算在生产环境中使用。在服务器中打开端口就像为黑客打开一扇窥探之门一样糟糕。

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

php怎么去掉字符串首位的tab空白符php怎么去掉字符串首位的tab空白符Apr 22, 2022 pm 07:11 PM

在php中,可以利用ltrim()函数来去掉字符串首位的tab空白符,语法为“ltrim(string)”;当只给ltrim()函数传入一个参数,用于规定要检查的字符串时,可删除该字符串开始位置的空白字符(例空格、tab制表符、换行符等)。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools