12345678910111213141516171819202122232425 |
- <?php
- // +----------------------------------------------------------------------
- // | Daswork simple php formwork
- // +----------------------------------------------------------------------
- // | Copyright (c) none
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Time: 2017-10-31 14:36
- // +----------------------------------------------------------------------
- // | Author: huwhois <huwhois@163.com>
- // +----------------------------------------------------------------------
- if (version_compare(PHP_VERSION, '5.3.0', '<')) {
- die('require PHP > 5.3.0 !');
- }
-
- // error_reporting(E_ALL || ~E_NOTICE);
- error_reporting(E_ALL);
- ini_set('max_execution_time', 0);
- // error_reporting(0);
- define("APP_PATH", __DIR__ . '/../application');
- define("DB", __DIR__ . '/../db');
- require(__DIR__.'/../daswork/start.php');
|