赛亿提成统计系统

index.php 937B

1234567891011121314151617181920212223
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Daswork simple php formwork
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) none
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Time: 2017-10-31 14:36
  10. // +----------------------------------------------------------------------
  11. // | Author: huwhois <huwhois@163.com>
  12. // +----------------------------------------------------------------------
  13. if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
  14. // error_reporting(E_ALL || ~E_NOTICE);
  15. error_reporting(E_ALL);
  16. // error_reporting(0);
  17. define("APP_PATH", __DIR__ . '/../application');
  18. define("DB", __DIR__ . '/../db');
  19. require(__DIR__.'/../daswork/start.php');