Home >Backend Development >PHP Tutorial >Analysis of the meaning of XHProf report fields, xhprof report fields_PHP tutorial
Function Name: method name.
Calls: The number of times the method has been called.
Calls%: The number of method calls as a percentage of the total number of method calls at the same level.
Incl.Wall Time (microsec): The time it takes for method execution, including the execution time of sub-methods. (Unit: microsecond)
IWall%: The percentage of time spent in method execution.
Excl. Wall Time (microsec): The time it takes to execute the method itself, excluding the execution time of sub-methods. (Unit: microsecond)
EWall%: The percentage of time spent executing the method itself.
Incl. CPU(microsecs): The CPU time spent on method execution, including the execution time of sub-methods. (Unit: microsecond)
ICpu%: The percentage of CPU time spent in method execution.
Excl. CPU (microsec): The CPU time spent executing the method itself, excluding the execution time of sub-methods. (Unit: microsecond)
ECPU%: The percentage of CPU time spent by the method itself.
Incl.MemUse(bytes): The memory occupied by method execution, including the memory occupied by sub-method execution. (Unit: Bytes)
IMemUse%: The percentage of memory occupied by method execution.
Excl.MemUse(bytes): The memory occupied by the execution of the method itself, excluding the memory occupied by the execution of sub-methods. (Unit: Bytes)
EMemUse%: The percentage of memory occupied by the method itself.
Incl.PeakMemUse(bytes): Incl.MemUse peak value. (Unit: Bytes)
IPeakMemUse%: Incl.MemUse peak percentage.
Excl.PeakMemUse(bytes): Excl.MemUse peak value. Unit: (byte)
EPeakMemUse%: Excl.MemUse peak percentage.
The above analysis of the meaning of the XHProf report fields is all the content shared by the editor. I hope it can give you a reference, and I also hope that everyone will support Bangkejia.