smoren/profiler
最新稳定版本:v0.2.4
Composer 安装命令:
composer require smoren/profiler
包简介
Helper for profiling
关键字:
README 文档
README
Profiler helper
How to install to your project
composer require smoren/profiler
Unit testing
composer install
composer test-init
composer test
Usage
use Smoren\Profiler\Profiler; function someTask() { Profiler::start('first'); usleep(10000); Profiler::stop('first'); Profiler::start('second'); usleep(20000); Profiler::stop('second'); } for($i=0; $i<10; ++$i) { someTask(); } Profiler::profile('third', function() { usleep(30000); }); print_r(Profiler::getStatTime()); /* Array ( [second] => 0.2015209197998 [third] => 0.20024418830872 [first] => 0.10135746002197 ) */ print_r(Profiler::getStatCalls()); /* Array ( [first] => 10 [second] => 10 [third] => 1 ) */
统计信息
- 总下载量: 105
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-07-22