Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /* * This file is part of the symfony package. * (c) 2004-2006 Fabien Potencier <f..
Decoded Output download
<?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;
}
} ?>
Did this file decode correctly?
Original Code
<?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;
}
}
Function Calls
None |
Stats
MD5 | d31b7eb3aff425457f95788c0941606b |
Eval Count | 0 |
Decode Time | 105 ms |