php运行状态报告工具:php-timer
最近写了一个异步mysql客户端的封装,想与传统的串行方式做下性能对比。包括运行时间、内存使用情况等信息。在github和packagist上搜索并没有找到自己想要的,xhprof又太大了,结果也太复杂,不符合现在的需要。所以决定自己写一个package,来实现对php脚本运行时间和内存使用情况的监控,并生成报告。
示例代码:
requiredirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR .'vendor'. DIRECTORY_SEPARATOR .'autoload.php';//初始化,设置内存单位$timer=new\Jenner\Timer(\Jenner\Timer::UNIT_KB);//记录a状态$timer->mark('a');sleep(2);//记录b状态$timer->mark('b');sleep(3);//记录c状态$timer->mark('c');sleep(4);//记录d状态$timer->mark('d');//打印总体报告(不包含差值)$timer->printReport();//获取总体报告,返回数组$report=$timer->getReport();//获取一个mark的报告$a_report=$timer->getReport('a');print_r($a_report);//打印a状态和b状态的差异信息,包含运行时间、使用内存等$timer->printDiffReportByStartAndEnd('a','b');//获取a状态和b状态的差异报告$ab_diff_report=$timer->getDiffReportByStartAndEnd('a','b');//打印第一个mark和最后一个mark之间的差异信息$timer->printDiffReport();//获取第一个mark和最后一个mark之间的差异信息$diff_report=$timer->getDiffReport();
输出结果:
------------------------------------------mark:atime:1437535424.9998smemory_real:1280KBmemory_emalloc:833.046875KBmemory_peak_real:1280KBmemory_peak_emalloc:843.2890625KB------------------------------------------mark:btime:1437535427smemory_real:1280KBmemory_emalloc:834.2265625KBmemory_peak_real:1280KBmemory_peak_emalloc:843.2890625KB------------------------------------------mark:ctime:1437535430.0002smemory_real:1280KBmemory_emalloc:835.1875KBmemory_peak_real:1280KBmemory_peak_emalloc:843.2890625KB------------------------------------------mark:dtime:1437535434.0004smemory_real:1280KBmemory_emalloc:836.1484375KBmemory_peak_real:1280KBmemory_peak_emalloc:843.2890625KBArray( [time] => 1437535424.9998 [memory_real] => 1310720 [memory_emalloc] => 853040 [memory_peak_real] => 1310720 [memory_peak_emalloc] => 863528)------------------------------------------mark:[diff] start_mark:a end_mark:btime:2.0001850128174smemory_real:0KBmemory_emalloc:1.1796875KBmemory_peak_real:0KBmemory_peak_emalloc:0KB------------------------------------------mark:[totaldiff]time:9.0006000995636smemory_real:0KBmemory_emalloc:3.1015625KBmemory_peak_real:0KBmemory_peak_emalloc:0KB
项目主页:http://www.open-open.com/lib/view/home/1437969396019

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Following its high-profile acquisition by Facebook in 2012, Instagram adopted two sets of APIs for third-party use. These are the Instagram Graph API and the Instagram Basic Display API.As a developer building an app that requires information from a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio
