bootDangerTimer.php 370 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2019/5/27
  6. * Time: 9:16
  7. */
  8. date_default_timezone_set('PRC');
  9. define('START_TIME', microtime(true));
  10. require __DIR__ . '/../vendor/autoload.php';
  11. \datainf\lib\boot::init();
  12. $config = \datainf\lib\GlobConfigs::getKey('httpDangerTimer');
  13. $ser = new datainf\logic\HttpDangerTimer($config);
  14. $ser->start();