123456789101112131415161718192021 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Bear
- * Date: 2018/10/22
- * Time: 下午6:20
- */
- namespace think;
- // 定义项目路径
- define('APP_PATH', __DIR__ . '/../application/');
- // 添加初始化文件
- require_once APP_PATH.'/../tests/TestInit.php';
- // ThinkPHP 引导文件
- require_once __DIR__ . '/../thinkphp/base.php';
- // 执行应用
- App::initCommon();
|