菜单

typo3在线用户

2011年08月23日 - typo3
function checkUserIsOnline($userid){
		$online = false;
		$res = $GLOBALS['TYPO3_DB']->sql_query('SELECT DISTINCT ses_userid, username, name
				FROM fe_sessions LEFT JOIN fe_users ON (ses_userid=uid)
				WHERE ses_tstamp+3600 > unix_timestamp() OR is_online+3600 > unix_timestamp() and ses_userid='.$userid);
		while(false!==($row=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($res))){
			if($row['ses_userid']==$userid)$online=true;
		}
		return $online;
	}

发表评论

电子邮件地址不会被公开。 必填项已用*标注