12345678910111213141516171819202122232425262728293031 |
- <?php
- require_once '../runtime.php';
- require_once '../func.php';
- ini_set('max_execution_time', '0');
- $baseURL = 'http://cloud.yinqingli.net';
- $out = '';
- while(true) {
- $i++;
- $context = stream_context_create(array(
- 'http' => array(
- 'timeout' => 1000
- )
- ));
- $out .= file_get_contents($baseURL.'/queue.php?act=report', 0, $context);
- $file = LOG_DIR.'crontab_report_'.date('Ymd').'.log';
- Suco_File::write($file, $out, 'a');
- echo '<pre>'.$out.'</pre>';
- echo '<script>window.location = \'/crontab/report.php?time='.(time()).'\'</script>';
- // unset($log, $out);
- die;
- }
|