1234567891011121314151617181920212223 |
- <?php
- define('BASE_ROOT_PATH',str_replace('\\','/',dirname(__FILE__)));
- require_once (BASE_ROOT_PATH . '/fooder.php');
- $gfcgi_run = 2;
- if($gfcgi_run == 0) { //模拟请求
- $file = BASE_ROOT_PATH . '/debug_run.php';
- include $file;
- } elseif ($gfcgi_run == 1) {
- $file = BASE_ROOT_PATH . '/research_run.php';
- include $file;
- } else {
- define('StartTime', microtime(true));
- define('TIMESTAMP', time());
- Base::run_test();
- $file = BASE_CRONTAB_PATH . '/crawl/fetch_goods.php';
- include $file;
- }
- ?>
|