간단한 사이트 작업일 경우
데이타 베이스를 사용하지 않고 현재 접속자를 출력하는 방법입니다.
아래의 예제는
현재 접속 경로와 리퍼러를 출력하는 예제입니다.
<?php
//현재 접속자 상세정보 가졍오기
//Yget_filelist_in_dir 함수에 의존성을 갖는다.
//Yread_file 함수에 의존성을 갖는다.
function Yin_user($dir_session){
$time1 = 60 * 10;//활동중인 현재 접속자 기준 1분
$time2 = 60 * 20;//현재접속자의 기준 5분
if (empty($dir_session)) return Array();
if (!is_dir($dir_session)) return Array();
$dir_array = Yget_filelist_in_dir($dir_session);
$return = Array();
$i = 1;
foreach($dir_array as $val){
if (filemtime($val) < (time() - $time2)) continue;
if (filemtime($val) > (time() - $time1)) {
$text = Yread_file($val);
$return[$i]['active'] = 'Active!!';
preg_match("`s_location\|s:.+:\"(.+)\";`U", $text, $m);
$m[1] = trim($m[1]);
$return[$i]['location'] = (!empty($m[1])) ? $m[1] : '위치정보 없음';
preg_match("`s_referer\|s:.+:\"(.+)\";`U", $text, $m);
$m[1] = trim($m[1]);
$return[$i]['referer'] = (!empty($m[1])) ? $m[1] : 'Direct!!';
}
else {
$text = Yread_file($val);
$return[$i]['active'] = 'Inactive!!';
preg_match("`s_location\|s:.+:\"(.+)\";`U", $text, $m);
$m[1] = trim($m[1]);
$return[$i]['location'] = (!empty($m[1])) ? $m[1] : '위치정보 없음';
preg_match("`s_referer\|s:.+:\"(.+)\";`U", $text, $m);
$m[1] = trim($m[1]);
$return[$i]['referer'] = (!empty($m[1])) ? $m[1] : 'Direct!!';
}
$i++;
}
return $return;
}
//넘어온 디렉토리의 모든 일차 파일리스트를 배열로 반환
function Yget_filelist_in_dir($dir_path){
$dir_path = preg_replace("`/+$`", '', $dir_path);
if(!is_dir($dir_path)) return Array();
$return_file = Array();
$d = dir($dir_path) or die('해당 디렉토리(' . $dir_path . ')를 열수 없습니다.');
while (false !== ($entry = $d->read())) {
$temp_file = $dir_path . '/' . $entry;
if (is_file($temp_file) && !preg_match("`\.$`", $temp_file)) {
$return_file[] = $temp_file;
}
}
$d->close();
return $return_file;
}
//로컬파일 읽어오기
function Yread_file ($read_file_path){
if (empty($read_file_path) || !file_exists($read_file_path)) return false;
if (is_readable($read_file_path) !== true) die('해당 파일(' . $read_file_path . ')은 읽을 권한이 없는 파일입니다.');
$fr = fopen($read_file_path, "r") or die('해당 파일(' . $read_file_path . ')을 열수 없습니다.');
if (empty($fr)) return false;
$filesize = filesize($read_file_path);
if (empty($filesize)) $filesize = 1024;
$read_text = fread($fr, $filesize);
fclose($fr);
if (empty($read_text)) return false;
return $read_text;
}
//각 페이지 접속시 세션 시작 이후 페이지 로케이션을 세션으로 저장한 경우 사용할수 있습니다.
//저같은 경우
if (empty($title)) $location = $_SERVER['PHP_SELF'];
else $location = $title;
$_SESSION['s_location'] = $location;
if (!empty($_SERVER['HTTP_REFERER']) && !preg_match("`^https?://(www\.)?chancein\.com`i", $_SERVER['HTTP_REFERER'])) $_SESSION['s_referer'] = $_SERVER['HTTP_REFERER'];
unset($location);
//현재 접속자 가져오기, 세션을 저장하는 디렉토리 경로를 절대경로 or 상대경로로서 인자로 넘김, $dir_data_session
//출력
$current = Yin_user($dir_data_session);
foreach($current as $k =>$v){
echo '<b>' . $k . '.</b> [<b>' . $v['active'] . '</b>] ' . $v['location'] . '<br> [<b>referer</b>] ' . $v['referer'] . '<br><br>';
}
?>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7330 | 11년 전 | 1671 | ||
| 7329 | 11년 전 | 930 | ||
| 7328 | 11년 전 | 2216 | ||
| 7327 | 11년 전 | 1717 | ||
| 7326 | 11년 전 | 3796 | ||
| 7325 | 11년 전 | 2261 | ||
| 7324 | 11년 전 | 4506 | ||
| 7323 |
호식이와미돌
|
11년 전 | 1276 | |
| 7322 |
호식이와미돌
|
11년 전 | 1137 | |
| 7321 | 11년 전 | 1780 | ||
| 7320 | 11년 전 | 1753 | ||
| 7319 | 11년 전 | 1314 | ||
| 7318 |
|
11년 전 | 965 | |
| 7317 |
멋진남자임
|
11년 전 | 1613 | |
| 7316 |
잘살아보자
|
11년 전 | 982 | |
| 7315 | 11년 전 | 1087 | ||
| 7314 | 11년 전 | 1304 | ||
| 7313 |
잘살아보자
|
11년 전 | 1116 | |
| 7312 | 11년 전 | 875 | ||
| 7311 |
사랑한데이
|
11년 전 | 2056 | |
| 7310 |
잘살아보자
|
11년 전 | 1871 | |
| 7309 |
잘살아보자
|
11년 전 | 3039 | |
| 7308 |
잘살아보자
|
11년 전 | 1015 | |
| 7307 |
잘살아보자
|
11년 전 | 778 | |
| 7306 | 11년 전 | 863 | ||
| 7305 |
잘살아보자
|
11년 전 | 2754 | |
| 7304 | 11년 전 | 1013 | ||
| 7303 | 11년 전 | 1211 | ||
| 7302 | 11년 전 | 715 | ||
| 7301 | 11년 전 | 1500 | ||
| 7300 |
mijaya
|
11년 전 | 1490 | |
| 7299 | 11년 전 | 902 | ||
| 7298 | 11년 전 | 1085 | ||
| 7297 | 11년 전 | 762 | ||
| 7296 | 11년 전 | 721 | ||
| 7295 | 11년 전 | 1551 | ||
| 7294 | 11년 전 | 894 | ||
| 7293 | 11년 전 | 800 | ||
| 7292 | 11년 전 | 903 | ||
| 7291 |
잘살아보자
|
11년 전 | 1089 | |
| 7290 |
잘살아보자
|
11년 전 | 737 | |
| 7289 | 11년 전 | 781 | ||
| 7288 |
잘살아보자
|
11년 전 | 1300 | |
| 7287 | 11년 전 | 820 | ||
| 7286 |
잘살아보자
|
11년 전 | 1317 | |
| 7285 | 11년 전 | 812 | ||
| 7284 | 11년 전 | 979 | ||
| 7283 | 11년 전 | 1007 | ||
| 7282 | 11년 전 | 757 | ||
| 7281 | 11년 전 | 788 | ||
| 7280 | 11년 전 | 1025 | ||
| 7279 | 11년 전 | 1956 | ||
| 7278 | 11년 전 | 791 | ||
| 7277 | 11년 전 | 804 | ||
| 7276 | 11년 전 | 745 | ||
| 7275 | 11년 전 | 1156 | ||
| 7274 | 11년 전 | 807 | ||
| 7273 | 11년 전 | 712 | ||
| 7272 | 11년 전 | 1043 | ||
| 7271 | 11년 전 | 1370 | ||
| 7270 | 11년 전 | 997 | ||
| 7269 | 11년 전 | 925 | ||
| 7268 | 11년 전 | 968 | ||
| 7267 | 11년 전 | 1801 | ||
| 7266 | 11년 전 | 872 | ||
| 7265 | 11년 전 | 929 | ||
| 7264 |
잘살아보자
|
11년 전 | 2706 | |
| 7263 |
잘살아보자
|
11년 전 | 2253 | |
| 7262 |
잘살아보자
|
11년 전 | 1138 | |
| 7261 |
잘살아보자
|
11년 전 | 1629 | |
| 7260 |
잘살아보자
|
11년 전 | 1243 | |
| 7259 | 11년 전 | 1155 | ||
| 7258 |
잘살아보자
|
11년 전 | 1288 | |
| 7257 |
잘살아보자
|
11년 전 | 1889 | |
| 7256 | 11년 전 | 929 | ||
| 7255 |
그누5입문
|
11년 전 | 1937 | |
| 7254 | 11년 전 | 2161 | ||
| 7253 |
|
11년 전 | 856 | |
| 7252 | 11년 전 | 1001 | ||
| 7251 | 11년 전 | 713 | ||
| 7250 | 11년 전 | 1676 | ||
| 7249 | 11년 전 | 1544 | ||
| 7248 |
sogo87
|
11년 전 | 1031 | |
| 7247 | 11년 전 | 914 | ||
| 7246 | 11년 전 | 691 | ||
| 7245 |
잘살아보자
|
11년 전 | 1067 | |
| 7244 | 11년 전 | 1520 | ||
| 7243 |
presee
|
11년 전 | 588 | |
| 7242 |
sogo87
|
11년 전 | 778 | |
| 7241 | 11년 전 | 859 | ||
| 7240 |
브라이언2
|
11년 전 | 881 | |
| 7239 |
|
11년 전 | 1086 | |
| 7238 | 11년 전 | 2616 | ||
| 7237 |
잘살아보자
|
11년 전 | 2274 | |
| 7236 |
dethos79
|
11년 전 | 1836 | |
| 7235 |
멋진남자임
|
11년 전 | 1397 | |
| 7234 | 11년 전 | 1339 | ||
| 7233 | 11년 전 | 2311 | ||
| 7232 | 11년 전 | 1580 | ||
| 7231 | 11년 전 | 2780 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기