diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-04-23 17:57:38 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-04-23 17:57:38 +0200 |
commit | c8a2a60c1075e5f725967962663127dad0f9e2e1 (patch) | |
tree | d877440f9c3ba20f132ad1c91f70600b77ada409 /system/core/Benchmark.php | |
parent | 31d30bcf206ed2e9168b93f74511708d6bc4b505 (diff) | |
parent | 274f7d1b42d6ed83c3b22106c945590c05599cdc (diff) |
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into patch
Diffstat (limited to 'system/core/Benchmark.php')
-rwxr-xr-x | system/core/Benchmark.php | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/system/core/Benchmark.php b/system/core/Benchmark.php index f6b634deb..39027e809 100755 --- a/system/core/Benchmark.php +++ b/system/core/Benchmark.php @@ -61,7 +61,7 @@ class CI_Benchmark { */ public function mark($name) { - $this->marker[$name] = microtime(); + $this->marker[$name] = microtime(TRUE); } // -------------------------------------------------------------------- @@ -93,13 +93,10 @@ class CI_Benchmark { if ( ! isset($this->marker[$point2])) { - $this->marker[$point2] = microtime(); + $this->marker[$point2] = microtime(TRUE); } - list($sm, $ss) = explode(' ', $this->marker[$point1]); - list($em, $es) = explode(' ', $this->marker[$point2]); - - return number_format(($em + $es) - ($sm + $ss), $decimals); + return number_format($this->marker[$point2] - $this->marker[$point1], $decimals); } // -------------------------------------------------------------------- @@ -122,4 +119,4 @@ class CI_Benchmark { } /* End of file Benchmark.php */ -/* Location: ./system/core/Benchmark.php */ +/* Location: ./system/core/Benchmark.php */
\ No newline at end of file |