세션만을 이용한 현재 접속자. 로케이션 표시

· 18년 전 · 2822

간단한 사이트 작업일 경우
데이타 베이스를 사용하지 않고 현재 접속자를 출력하는 방법입니다.

아래의 예제는
현재 접속 경로와 리퍼러를 출력하는 예제입니다.
<?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

[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
17년 전 조회 3,551
17년 전 조회 1,725
17년 전 조회 1,844
17년 전 조회 1,541
17년 전 조회 2,384
17년 전 조회 3,318
18년 전 조회 2,461
18년 전 조회 1,917
18년 전 조회 3,174
18년 전 조회 4,647
18년 전 조회 1,934
18년 전 조회 3,469
18년 전 조회 1,767
18년 전 조회 3,673
18년 전 조회 6,050
18년 전 조회 1,604
18년 전 조회 2,349
18년 전 조회 1,981
18년 전 조회 1,721
18년 전 조회 2,611
18년 전 조회 2,816
18년 전 조회 1,773
18년 전 조회 2,874
18년 전 조회 3,360
18년 전 조회 1,696
18년 전 조회 2,120
18년 전 조회 4,051
18년 전 조회 4,669
18년 전 조회 2,063
18년 전 조회 1,901
18년 전 조회 2,858
18년 전 조회 2,047
18년 전 조회 4,130
18년 전 조회 1,825
16년 전 조회 2,118
18년 전 조회 2,436
18년 전 조회 2,319
18년 전 조회 3,765
18년 전 조회 1,768
18년 전 조회 2,858
18년 전 조회 1,823
18년 전 조회 2,087
18년 전 조회 7,634
18년 전 조회 2,203
18년 전 조회 4,298
18년 전 조회 2,624
18년 전 조회 2,625
18년 전 조회 2,345
18년 전 조회 2,394
18년 전 조회 2,823
18년 전 조회 3,409
18년 전 조회 5,517
18년 전 조회 2,965
18년 전 조회 2,903
18년 전 조회 2,736
18년 전 조회 1,992
18년 전 조회 2,411
18년 전 조회 5,506
18년 전 조회 3,222
18년 전 조회 2,790
18년 전 조회 3,454
18년 전 조회 2,666
18년 전 조회 3,024
18년 전 조회 6,052
18년 전 조회 2,808
18년 전 조회 2,188
18년 전 조회 2,826
18년 전 조회 1,648
18년 전 조회 9,970
18년 전 조회 4,643
18년 전 조회 3,465
18년 전 조회 1,993
18년 전 조회 3,782
18년 전 조회 2,467
18년 전 조회 3,914
18년 전 조회 5,345
18년 전 조회 4,003
18년 전 조회 2,854
18년 전 조회 3,132
18년 전 조회 2,625
18년 전 조회 2,957
18년 전 조회 2,082
18년 전 조회 3,626
18년 전 조회 2,311
18년 전 조회 2,443
18년 전 조회 2,256
18년 전 조회 3,238
18년 전 조회 2,172
18년 전 조회 2,843
18년 전 조회 4,033
18년 전 조회 4,747
18년 전 조회 2,546
18년 전 조회 3,036
18년 전 조회 4,804
18년 전 조회 2,859
18년 전 조회 2,044
18년 전 조회 3,495
18년 전 조회 3,300
18년 전 조회 4,029
18년 전 조회 2,358