PHP 는 간단하게 웹 사이트 의 방 문 량 을 기록 하 는 기능 예 시 를 실현 한다.

본 논문 의 사례 는 PHP 가 사이트 의 방 문 량 을 기록 하 는 기능 을 간단하게 실현 하 는 것 을 서술 하 였 다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
tongji/index.php 파일:

$file = dirname(__FILE__).'/tongji.db';
//$data = unserialize(file_get_contents($file));
$fp=fopen($file,'r+');
$content='';
if (flock($fp,LOCK_EX)){
while (($buffer=fgets($fp,1024))!=false){
$content=$content.$buffer;
}
$data=unserialize($content);
//      
$total = 'total';
$month = date('Ym');
$today = date('Ymd');
$yesterday = date('Ymd',strtotime("-1 day"));
$tongji = array();
//      
$tongji[$total] = $data[$total] + 1;
//        
$tongji[$month] = $data[$month] + 1;
//       
$tongji[$today] = $data[$today] + 1;
//      
$tongji[$yesterday] = $data[$yesterday];
//      
ftruncate($fp,0); //            
rewind($fp); //          
fwrite($fp, serialize($tongji));
flock($fp,LOCK_UN);
fclose($fp);
//    
$total = $tongji[$total];
$month = $tongji[$month];
$today = $tongji[$today];
$yesterday = $tongji[$yesterday]?$tongji[$yesterday]:0;
echo "document.write('    {$total},    {$month},    {$yesterday},    {$today}');";
}

사용 방법(js 를 통 해 tongji/index.php 파일 도입):

<script language="JavaScript" src="./tongji/"></script>

실행 결과:

더 많은 PHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 논문 에서 말 한 것 이 여러분 의 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기