start_time = microtime(true); $this->max_exec_time = $max_exec_time * $runtime_bias / 100; } /** * Wake-up function to reset internal timer when we get unserialized * * @return void */ public function __wakeup() { // Re-initialize start time on wake-up $this->start_time = microtime(true); } /** * Gets the number of seconds left, before we hit the "must break" threshold * * @return float */ public function getTimeLeft() { return $this->max_exec_time - $this->getRunningTime(); } /** * Gets the time elapsed since object creation/unserialization, effectively * how long this step is running * * @return float */ public function getRunningTime() { return microtime(true) - $this->start_time; } /** * Reset the timer * * @return void */ public function resetTime() { $this->start_time = microtime(true); } }