shiishiji/timer
最新稳定版本:v1.0.0
Composer 安装命令:
composer require shiishiji/timer
包简介
hrtime wrapper
README 文档
README
Timer is a PHP library for dealing with precise time measurements.
Installation
Use the package manager composer to install Timer.
composer require shiishiji/timer
Usage
The usage is really straight forward. Firstly, create an instance of StopWatch class.
$timer = new StopWatch();
Secondly, use start() method to begin measurement.
Use stop() to end measurement.
Lastly getDuration() returns string representing measured time in nanoseconds.
$timer->start(); sleep(1); // perform action to be measured $timer->stop(); $result = $timer->getDuration(); var_dump($result); // prints something like -> string(10) "1000273951"
Development
First, build image
docker build -t php_timer .
To run tests use docker
docker run --rm -it php_timer vendor/bin/phpunit tests
License
统计信息
- 总下载量: 12
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-11-04