boot.php 339 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\lib;
  3. /**
  4. * Created by PhpStorm.
  5. * User: Administrator
  6. * Date: 2019/5/20
  7. * Time: 9:19
  8. */
  9. class boot
  10. {
  11. public static function init(){
  12. self::loadConsts();
  13. }
  14. public static function loadConsts(){
  15. require_once (realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR.'Mconsts.php');
  16. }
  17. }