B4BY.588
Home
Terminal
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sportmx
/
www
/
wp-content
/
plugins
/
wp-smushit
/
core
/
Filename :
class-timer.php
back
Copy
<?php namespace Smush\Core; class Timer { /** * @var float */ private $time_start; public function start() { $this->time_start = microtime( true ); } public function end( $round = true ) { $time_end = microtime( true ); $time = $time_end - $this->time_start; if ( $round ) { $time = round( $time, 2 ); } return $time; } }