if( gettime() >= nextCheckerTime )
{
print("[DEBUG] Checker(): gettime() >= nextCheckerTime");
// do shit here..
nextCheckerTime = gettime() + CHECKER_EXEC_INTERVAL_S ; // Apply the next time value to this variable. When gettime() exceeds or equals this value the code within these brackets will be called again.
}
}