define as follows
class Timer{
private static $timeRemaining;
private static $timeLimit;
private static $nextTime;
static function block();
static function updateCookies();
}
when going around between webpages, how long do those static properties and methods live? As a result, which one is better, using the class above or a singleton object?