* @copyright walkor * @link http://www.workerman.net/ * @license http://www.opensource.org/licenses/mit-license.php MIT License */ namespace support\bootstrap; use Webman\Bootstrap; use Workerman\Timer; /** * Class Date * @package support\bootstrap */ class Date implements Bootstrap { public static $date = ''; /** * @param \Workerman\Worker $worker * @return void */ public static function start($worker) { self::$date = gmdate('D, d M Y H:i:s').' GMT'; Timer::add(1, function() { self::$date = gmdate('D, d M Y H:i:s').' GMT'; }); } }