server 52763dedf1 gitignore | 2 년 전 | |
---|---|---|
.. | ||
.github | 2 년 전 | |
src | 2 년 전 | |
tests | 2 년 전 | |
.gitattributes | 2 년 전 | |
.gitignore | 2 년 전 | |
.php_cs.dist | 2 년 전 | |
.travis.yml | 2 년 전 | |
ChangeLog.md | 2 년 전 | |
LICENSE | 2 년 전 | |
README.md | 2 년 전 | |
build.xml | 2 년 전 | |
composer.json | 2 년 전 | |
phpunit.xml | 2 년 전 |
Utility class for timing things, factored out of PHPUnit into a stand-alone component.
You can add this library as a local, per-project dependency to your project using Composer:
composer require phpunit/php-timer
If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:
composer require --dev phpunit/php-timer
use SebastianBergmann\Timer\Timer;
Timer::start();
// ...
$time = Timer::stop();
var_dump($time);
print Timer::secondsToTimeString($time);
The code above yields the output below:
double(1.0967254638672E-5)
0 ms
use SebastianBergmann\Timer\Timer;
print Timer::resourceUsage();
The code above yields the output below:
Time: 0 ms, Memory: 0.50MB