12345678910111213 |
- <?php
- // [ 应用入口文件 ]
- namespace think;
- // 加载基础文件
- require __DIR__ . '/../thinkphp/base.php';
- define('BASE_ROOT_PATH',str_replace('/crontab','',dirname(__FILE__)));
- define('BASE_PATH',BASE_ROOT_PATH . '/crontab');
- require_once(BASE_PATH . '/config.ini.php');
|