edbizarro / timer
测量代码执行时间
v0.1.1
2018-06-20 15:04 UTC
Requires
- php: ^7.1.3
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.12
- orchestra/testbench: ^3.6
- phpunit/phpunit: ^7
This package is auto-updated.
Last update: 2024-09-05 05:32:49 UTC
README
Timer - 测量代码执行时间
以下是一些如何使用此包的示例
use Edbizarro\Timer\Timer; $timer = Timer::start('timer01'); sleep(2); $result = $timer->stop(); print_r($result); // array:7 [ // "start" => 1529506852.084 // "end" => 1529506854.0855 // "duration" => 2.0015239715576 // "milliseconds" => 2001.5239715576 // "seconds" => 2 // "minutes" => 0 // "hours" => 0 // ]
安装
您可以通过composer安装此包
composer require edbizarro/timer