Home > Article > Backend Development > Analyze PHP program running performance (consumption)
After using xdebug, php can configure xdebug related configurations and generate running logs. This article is about the analysis of the running performance of PHP programs. Interested friends can learn more.
Configure in php.ini:
In this way, the log file will be generated to the d:/xdebug/ directory:
Every time php is executed, a corresponding log file will be generated. There used to be a tool called WinCacheGrind that could be used to analyze this kind of log, but WinCacheGrind was no longer maintained in 2015. The latest version is 1.0.0.14, which only supports xdebug2. When you open the log file, an error will be reported: "Cannot find target ".
In fact, the powerful phpstorm comes with the function of performance log analysis. Open Tools->Analyze Xdebug Profiler Snapshot..
and then select D: After opening the log file under \xdebug, you can see the tree relationship of function calls and the execution time of each function
In this way, you can find out which one Function execution is time-consuming.
[Recommended course: PHP video tutorial]
The above is the detailed content of Analyze PHP program running performance (consumption). For more information, please follow other related articles on the PHP Chinese website!