2017 © Pedro Peláez
 

library timer

PHP timer library

image

eleme/timer

PHP timer library

  • Friday, June 27, 2014
  • by thbourlove
  • Repository
  • 0 Watchers
  • 0 Stars
  • 3,832 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 3 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

Timer

Build Status Scrutinizer Code Quality Code Coverage Stable Status, (*1)

thrift service provider for silex framework., (*2)

Install With Composer:

"require": {
    "eleme/timer": "~0.1"
}

Example:

<?php

use Eleme\Timer\Collection;

require __DIR__.'/../vendor/autoload.php';

$collection = new Collection('namespace');
$collection->start('test');
usleep(500000);
$collection->stop('test');
$collection->start('test');
usleep(1000000);
$collection->stop('test');
$collection->start('fast');
$collection->stop('fast');
foreach ($collection as $name => $timer) {
    echo $name, "\n";
    foreach ($timer->delta() as $value) {
        echo $value, "\n";
    }
}

The Versions

27/06 2014

dev-master

9999999-dev

PHP timer library

  Sources   Download

MIT

The Requires

  • php >=5.3.3

 

The Development Requires

by Hongbo Tang

27/06 2014

v0.1.0

0.1.0.0

PHP timer library

  Sources   Download

MIT

The Requires

  • php >=5.3.3

 

The Development Requires

by Hongbo Tang

24/06 2014

v0.0.3

0.0.3.0

PHP timer library

  Sources   Download

MIT

The Requires

  • php >=5.3.3

 

The Development Requires

by Hongbo Tang

24/06 2014

v0.0.2

0.0.2.0

PHP timer library

  Sources   Download

MIT

The Requires

  • php >=5.3.3

 

The Development Requires

by Hongbo Tang

24/06 2014

v0.0.1

0.0.1.0

PHP timer library

  Sources   Download

MIT

The Requires

  • php >=5.3.3

 

The Development Requires

by Hongbo Tang