You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
508 B

7 years ago
7 years ago
7 years ago
  1. <?php
  2. /*
  3. * @copyright Leyun internet Technology(Shanghai)Co.,Ltd
  4. * @license http://www.dzzoffice.com/licenses/license.txt
  5. * @package DzzOffice
  6. * @link http://www.dzzoffice.com
  7. * @author zyx(zyx@dzz.cc)
  8. */
  9. ignore_user_abort(1);
  10. if (!defined('IN_DZZ')) {
  11. exit('Access Denied');
  12. }
  13. $setarr = array('ip' => $_G['clientip'],
  14. 'agent' => $_SERVER['HTTP_USER_AGENT'],
  15. 'os' => $_SERVER['OS'],
  16. 'dateline' => $_G['timestamp']
  17. );
  18. DB::insert('count_down', $setarr);
  19. exit();
  20. ?>