| 1234567891011121314151617181920212223 |
- <?php
- namespace app\lib;
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/5/20
- * Time: 9:19
- */
- class boot
- {
- public static function init(){
- self::loadConsts();
- }
- public static function loadConsts(){
- require_once (realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR.'Mconsts.php');
- }
- }
|