定制 shiishiji/timer 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

MIT

统计信息

  • 总下载量: 12
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 4
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-11-04