123456789101112131415161718 |
- <?php
- define('COMPOSER_PHP_VERSION', '7.2.5' );
- if(version_compare(PHP_VERSION,COMPOSER_PHP_VERSION,'>')){
-
- require './vendor/autoload.php';
- }
- define('APP_DEBUG',True);
- define('APP_PATH','./Application/');
- require './ThinkPHP/ThinkPHP.php';
|