forked from wjima/Jshop_mall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crontab
executable file
·23 lines (20 loc) · 870 Bytes
/
crontab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env php
<?php
// +----------------------------------------------------------------------
// | JSHOP [ 小程序商城 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2018 http://jihainet.com All rights reserved.
// +----------------------------------------------------------------------
// | Author: sin <[email protected]>
// +----------------------------------------------------------------------
namespace think;
define('ROOT_PATH',dirname(__FILE__));
define('DS',DIRECTORY_SEPARATOR);
define('CRONTAB',TRUE);
error_reporting(0); //错误等级
define('ADDON_PATH', ROOT_PATH .DIRECTORY_SEPARATOR. 'addons' . DIRECTORY_SEPARATOR);
// 加载基础文件
require __DIR__ . '/thinkphp/base.php';
// 执行应用
Container::get('app', [__DIR__ . '/application/'])->initialize();
Console::init();