jmf/time
最新稳定版本:1.2.0
Composer 安装命令:
composer require jmf/time
包简介
Time package to retrieve and measure time. Provides an implementation of the PSR-20 clock interface.
README 文档
README
Installation & Requirements
Install with Composer:
composer require jmf/time
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 Jmf\Time\Clock; $clock = new Clock(); // Will output something like "2020-01-23" echo $clock->getDateTime()->format('Y-m-d'); // 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 Jmf\Time\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();
Note: prefer instantiating a new Timer object over sharing/injecting a Timer instance, as it would lead to side effects.
An injectable TimerFactory is offered for convenience:
<?php use Jmf\Time\Timer; use Jmf\Time\TimerFactory; $timerFactory = new TimerFactory(); $timer = $timerFactory->create(); $timer->start(); // ...
统计信息
- 总下载量: 1.72k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2024-05-17