perf/timing
最新稳定版本:2.0.0
Composer 安装命令:
composer require perf/timing
包简介
Allows to retrieve and measure time.
README 文档
README
Timing package.
Installation & Requirements
Install with Composer:
composer require perf/timing
Usage
Clock
Clock allows to retrieve current time and date.
Injecting it in your application will allow to ease the testing of time-related operations (mocking its ClockInterface interface and making its return values predictable).
<?php use perf\Timing\Clock; $clock = new Clock(); // Will output something like "2020-01-23" echo $clock->getDateString(); // Will output something like "15:16:17" echo $clock->getTimeString(); // Will output something like "2020-01-23 15:16:17" echo $clock->getDateTimeString(); // Will output something like "123456789" echo $clock->getTimestamp(); // Will output something like "123456789.0123" echo $clock->getMicrotime();
Timer
Timer allows to mesure elapsed time (in seconds, with microsecond precision).
It can be started ($timer->start()), stopped ($timer->stop()), reset ($timer->reset()), and restarted ($timer->restart()). You can also query elapsed time ($timer->getElapsed()).
<?php use perf\Timing\Timer; $timer = new Timer(); sleep(1); // Will output something like "0.0" echo $timer->getElapsed(); $timer->start(); sleep(1); // Will output something like "1.0023456" echo $timer->getElapsed(); sleep(1); $timer->stop(); sleep(1); // Will output something like "2.0034567" echo $timer->getElapsed(); $timer->restart(); sleep(1); // Will output something like "1.0023456" echo $timer->getElapsed(); sleep(1); // Will output something like "2.0034567" echo $timer->getElapsed(); $timer->reset(); sleep(1); // Will output something like "0.0" echo $timer->getElapsed();
统计信息
- 总下载量: 348
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-03-23