raitocz / timer
Simple timer. This is fork of weew/timer working on PHP 5.3 for older projects.
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 6 849
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- weew/helpers-array-legacy: ^1.0.0
Requires (Dev)
- phpunit/phpunit: ^4.7
- satooshi/php-coveralls: ^0.6.1
README
Table of contents
Installation
composer require raitocz/timer
Introduction
This very simple library can be used to benchmark execution times of your code, or simply whenever you need a stopwatch.
Basic usage
You can retrieve duration between the timer start and stop.
$timer = new Timer(); $timer->start(); sleep(1); $timer->stop(); echo $timer->getDuration(); // 1.0234
Checkpoints
You can create custom checkpoints whenever and retrieve the elapsed time until the checkpoint was reached.
$timer = new Timer(); $timer->start(); $timer->createCheckpoint('foo'); $timer->stop(); $timer->getStartTime(); // returns start time in microseconds $timer->getStopTime(); // returns stop time $timer->getCheckpoint('start'); // returns start time $timer->getCheckpoint('stop'); // returns stop time $timer->getCheckpoint('foo'); // returns time of the checkpoint foo
Duration between checkpoints
You can measure duration between the checkpoints.
$timer = new Timer(); $timer->createCheckpoint('foo'); sleep(1); $timer->createCheckpoint('bar'); // returns time elapsed since checkpoint foo till now $timer->getDuration('foo'); // returns duration between checkpoints foo and bar $timer->getDuration('foo', 'bar'); $timer->stop(); // returns time between checkpoints foo and stop $timer->getDuration('foo');