Skip to content

Commit

Permalink
autoload
Browse files Browse the repository at this point in the history
  • Loading branch information
star7th committed May 31, 2021
1 parent 2eb422b commit c97f3b4
Showing 1 changed file with 8 additions and 19 deletions.
27 changes: 8 additions & 19 deletions server/index.php
Original file line number Diff line number Diff line change
@@ -1,21 +1,12 @@
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <[email protected]>
// +----------------------------------------------------------------------

// 增加自动加载
require './vendor/autoload.php';

// 应用入口文件

// 检测PHP环境
if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
// 当php版本达到composer包要求的版本时候,则require autoload
// vendor/composer/platform_check.php 里面可以看到composer包要求的最低版本
define('COMPOSER_PHP_VERSION', '7.2.5' );
if(version_compare(PHP_VERSION,COMPOSER_PHP_VERSION,'>')){
// 增加自动加载
require './vendor/autoload.php';
}

// 开启调试模式 建议开发阶段开启 部署阶段注释或者设为false
define('APP_DEBUG',True);
Expand All @@ -24,6 +15,4 @@
define('APP_PATH','./Application/');

// 引入ThinkPHP入口文件
require './ThinkPHP/ThinkPHP.php';

// 亲^_^ 后面不需要任何代码了 就是如此简单
require './ThinkPHP/ThinkPHP.php';

0 comments on commit c97f3b4

Please sign in to comment.