-
Notifications
You must be signed in to change notification settings - Fork 22
/
cron.php
38 lines (29 loc) · 1.28 KB
/
cron.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?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]>
// +----------------------------------------------------------------------
// 应用入口文件
// 检测PHP环境
if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
// 开启调试模式 建议开发阶段开启 部署阶段注释或者设为false
define('APP_DEBUG',True);
// 检测计划任务脚本参数
// $argv包含当运行于命令行下时传递给当前脚本的参数的数组
if(!$argv || count($argv) < 4) {
die("parmas_is_error");
}
// $dir是必须要加的,否则会出现文件目录找不到的问题
$dir = dirname(__FILE__);
$_GET['m'] = $argv[1];
$_GET['c'] = $argv[2];
$_GET['a'] = $argv[3];
// 定义应用目录
define('APP_PATH', $dir.'/Application/');
// 引入ThinkPHP入口文件
require $dir.'/ThinkPHP/ThinkPHP.php';