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

<?php
/*
* @copyright Leyun internet Technology(Shanghai)Co.,Ltd
* @license http://www.dzzoffice.com/licenses/license.txt
* @package DzzOffice
* @link http://www.dzzoffice.com
* @author zyx(zyx@dzz.cc)
*/
ignore_user_abort(1);
if (!defined('IN_DZZ')) {
exit('Access Denied');
}
$setarr = array('ip' => $_G['clientip'],
'agent' => $_SERVER['HTTP_USER_AGENT'],
'os' => $_SERVER['OS'],
'dateline' => $_G['timestamp']
);
DB::insert('count_down', $setarr);
exit();
?>