designModeDemo/index.php

12 lines
307 B
PHP
Raw Normal View History

2022-04-13 06:00:06 +08:00
<?php
2022-04-15 04:37:19 +08:00
// 根目录
2022-04-13 06:00:06 +08:00
const ROOTDIR = __DIR__;
2022-04-15 04:37:19 +08:00
// composer 自动依赖注入文件
2022-04-15 04:27:05 +08:00
require ROOTDIR . '/vendor/autoload.php';
2022-04-15 04:37:19 +08:00
// 自动实现的自动依赖注入文件
2022-04-13 06:00:06 +08:00
require ROOTDIR . '/bin/Psr4Autoload.php';
2022-04-15 04:37:19 +08:00
// 注册命名空间
2022-04-13 06:00:06 +08:00
(new \bin\Psr4Autoload)->register();
2022-04-15 04:37:19 +08:00
// 首页默认内容
2022-04-13 06:00:06 +08:00
(new \bin\Base);