-
Notifications
You must be signed in to change notification settings - Fork 29
/
sfTimer.php
84 lines (75 loc) · 1.66 KB
/
sfTimer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* sfTimer class allows to time some PHP code.
*
* @package symfony
* @subpackage util
* @author Fabien Potencier <[email protected]>
* @version SVN: $Id: sfTimer.class.php 9079 2008-05-20 00:38:07Z Carl.Vondrick $
*/
class sfTimer
{
protected
$startTime = null,
$totalTime = null,
$name = '',
$calls = 0;
/**
* Creates a new sfTimer instance.
*
* @param string $name The name of the timer
*/
public function __construct($name = '')
{
$this->name = $name;
$this->startTimer();
}
/**
* Starts the timer.
*/
public function startTimer()
{
$this->startTime = microtime(true);
}
/**
* Stops the timer and add the amount of time since the start to the total time.
*
* @return float Time spend for the last call
*/
public function addTime()
{
$spend = microtime(true) - $this->startTime;
$this->totalTime += $spend;
++$this->calls;
return $spend;
}
/**
* Gets the number of calls this timer has been called to time code.
*
* @return integer Number of calls
*/
public function getCalls()
{
return $this->calls;
}
/**
* Gets the total time elapsed for all calls of this timer.
*
* @return float Time in seconds
*/
public function getElapsedTime()
{
if (null === $this->totalTime)
{
$this->addTime();
}
return $this->totalTime;
}
}