boot.php 417 B

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