From 9b55ca34845488c4436382844b3d1a23dbf9293c Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Fri, 2 Sep 2016 17:54:15 +0200 Subject: [PATCH] performance debug timer --- src/phinde/Helper.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/phinde/Helper.php b/src/phinde/Helper.php index 8e30a19..00215fe 100644 --- a/src/phinde/Helper.php +++ b/src/phinde/Helper.php @@ -65,5 +65,17 @@ class Helper return $prot . '://' . $_SERVER['HTTP_HOST'] . $path; } + static $timer = []; + + public static function start($timer = 'timer') + { + static::$timer[$timer] = microtime(true); + } + + public static function stop($timer = 'timer') + { + $diff = microtime(true) - static::$timer[$timer]; + echo '+timer: ' . number_format($diff, 3) . 'ms ' . $timer . "\n"; + } } ?> -- 2.30.2