간단한 사이트 작업일 경우
데이타 베이스를 사용하지 않고 현재 접속자를 출력하는 방법입니다.
아래의 예제는
현재 접속 경로와 리퍼러를 출력하는 예제입니다.
<?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>';
}
?>
예제 : http://chancein.com/svc/current.php
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 1730 | 17년 전 | 1179 | ||
| 1729 | 17년 전 | 1598 | ||
| 1728 | 17년 전 | 1668 | ||
| 1727 | 17년 전 | 1812 | ||
| 1726 | 17년 전 | 2948 | ||
| 1725 | 17년 전 | 2086 | ||
| 1724 |
|
17년 전 | 1766 | |
| 1723 |
끝없는사랑
|
17년 전 | 2103 | |
| 1722 |
끝없는사랑
|
17년 전 | 1808 | |
| 1721 | 17년 전 | 3341 | ||
| 1720 | 17년 전 | 1528 | ||
| 1719 | 17년 전 | 1645 | ||
| 1718 |
사랑합니다
|
17년 전 | 1363 | |
| 1717 | 17년 전 | 2181 | ||
| 1716 | 17년 전 | 3136 | ||
| 1715 |
|
17년 전 | 2270 | |
| 1714 |
|
17년 전 | 1728 | |
| 1713 | 17년 전 | 2978 | ||
| 1712 | 17년 전 | 4419 | ||
| 1711 | 17년 전 | 1735 | ||
| 1710 | 17년 전 | 3235 | ||
| 1709 |
jeans
|
17년 전 | 1563 | |
| 1708 |
|
17년 전 | 3474 | |
| 1707 | 17년 전 | 5838 | ||
| 1706 |
|
17년 전 | 1418 | |
| 1705 |
|
17년 전 | 2154 | |
| 1704 | 17년 전 | 1787 | ||
| 1703 |
심심맨닷컴
|
17년 전 | 1539 | |
| 1702 | 17년 전 | 2413 | ||
| 1701 |
|
17년 전 | 2617 | |
| 1700 | 17년 전 | 1592 | ||
| 1699 | 17년 전 | 2681 | ||
| 1698 |
RedRiverFisher
|
17년 전 | 3164 | |
| 1697 |
심심맨닷컴
|
17년 전 | 1517 | |
| 1696 |
eclub
|
17년 전 | 1932 | |
| 1695 | 17년 전 | 3840 | ||
| 1694 |
깜장고무신
|
17년 전 | 4474 | |
| 1693 |
stuartkim
|
17년 전 | 1869 | |
| 1692 |
stuartkim
|
17년 전 | 1725 | |
| 1691 |
|
17년 전 | 2661 | |
| 1690 | 17년 전 | 1843 | ||
| 1689 | 17년 전 | 3929 | ||
| 1688 | 17년 전 | 1636 | ||
| 1687 | 16년 전 | 1921 | ||
| 1686 |
|
17년 전 | 2254 | |
| 1685 | 17년 전 | 2103 | ||
| 1684 |
|
17년 전 | 3567 | |
| 1683 |
leeLook
|
17년 전 | 1587 | |
| 1682 | 17년 전 | 2652 | ||
| 1681 | 17년 전 | 1639 | ||
| 1680 | 17년 전 | 1901 | ||
| 1679 | 17년 전 | 7417 | ||
| 1678 | 17년 전 | 1993 | ||
| 1677 | 17년 전 | 4084 | ||
| 1676 | 17년 전 | 2414 | ||
| 1675 | 17년 전 | 2423 | ||
| 1674 | 17년 전 | 2144 | ||
| 1673 | 17년 전 | 2197 | ||
| 1672 | 17년 전 | 2618 | ||
| 1671 | 17년 전 | 3211 | ||
| 1670 | 17년 전 | 5321 | ||
| 1669 |
플래시007
|
17년 전 | 2775 | |
| 1668 |
|
17년 전 | 2693 | |
| 1667 | 17년 전 | 2548 | ||
| 1666 |
|
17년 전 | 1793 | |
| 1665 | 17년 전 | 2201 | ||
| 1664 | 17년 전 | 5302 | ||
| 1663 |
|
17년 전 | 3017 | |
| 1662 |
|
17년 전 | 2579 | |
| 1661 |
|
17년 전 | 3250 | |
| 1660 |
|
17년 전 | 2466 | |
| 1659 |
|
17년 전 | 2826 | |
| 1658 | 17년 전 | 5870 | ||
| 1657 | 17년 전 | 2626 | ||
| 1656 |
Piece
|
17년 전 | 2017 | |
| 1655 |
|
17년 전 | 2649 | |
| 1654 | 17년 전 | 1474 | ||
| 1653 | 17년 전 | 9794 | ||
| 1652 | 17년 전 | 4451 | ||
| 1651 | 17년 전 | 3281 | ||
| 1650 | 17년 전 | 1808 | ||
| 1649 | 17년 전 | 3599 | ||
| 1648 | 17년 전 | 2284 | ||
| 1647 | 17년 전 | 3729 | ||
| 1646 | 17년 전 | 5182 | ||
| 1645 | 17년 전 | 3838 | ||
| 1644 | 17년 전 | 2680 | ||
| 1643 | 17년 전 | 2937 | ||
| 1642 | 17년 전 | 2444 | ||
| 1641 | 17년 전 | 2782 | ||
| 1640 |
porgy
|
17년 전 | 1897 | |
| 1639 | 17년 전 | 3436 | ||
| 1638 |
컴퓨터기술자
|
17년 전 | 2134 | |
| 1637 |
|
17년 전 | 2257 | |
| 1636 | 17년 전 | 2072 | ||
| 1635 | 17년 전 | 3046 | ||
| 1634 |
귀여운현호
|
17년 전 | 1995 | |
| 1633 |
태양의서쪽
|
17년 전 | 2665 | |
| 1632 | 17년 전 | 3863 | ||
| 1631 | 17년 전 | 4564 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기