shiishiji / timer
hrtime wrapper
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/shiishiji/timer
Requires
- php: >=8
Requires (Dev)
- phpunit/phpunit: ^10
This package is not auto-updated.
Last update: 2025-10-05 20:20:33 UTC
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