dev-master
9999999-devA simple stopwatch in PHP
MIT
The Development Requires
by Kelly Kiernan
v1.0
1.0.0.0A simple stopwatch in PHP
MIT
The Development Requires
by Kelly Kiernan
Wallogit.com
2017 © Pedro Peláez
A simple stopwatch in PHP
A simple stopwatch in PHP., (*1)
Install the package using composer., (*3)
composer require kkiernan/php-stopwatch
start()stop()lap()elapsed()use Kiernan\Stopwatch;
require dirname(__DIR__). '/vendor/autoload.php';
$stopwatch = new Stopwatch();
$stopwatch->start();
usleep(1500000);
$stopwatch->stop();
echo "Script executed in {$stopwatch->elapsed()} seconds";
The above example prints the following output:, (*4)
Script executed in 3.0002250671387 seconds
use Kiernan\Stopwatch; require dirname(__DIR__). '/vendor/autoload.php'; $stopwatch = new Stopwatch(); $stopwatch->start(); sleep(1); $stopwatch->lap(); sleep(2); $stopwatch->lap(); sleep(1); $stopwatch->lap(); $stopwatch->stop(); print_r($stopwatch->laps);
The above example prints the following output:, (*5)
Array
(
[0] => Kiernan\Lap Object
(
[start:protected] => 1542305179.9815
[duration:protected] => 1.0043249130249
[name:protected] =>
)
[1] => Kiernan\Lap Object
(
[start:protected] => 1542305181.9823
[duration:protected] => 2.0006990432739
[name:protected] =>
)
[2] => Kiernan\Lap Object
(
[start:protected] => 1542305182.9823
[duration:protected] => 1.0000500679016
[name:protected] =>
)
)
A simple stopwatch in PHP
MIT
A simple stopwatch in PHP
MIT