코드 복사 코드는 다음과 같습니다.
$now=time(); //현재 시간
$StrUpdate = " $tbl_article 세트 조회수=조회 1" 업데이트;
if(date("d",$lasthittime)==date("d",$now)){//당일
$StrUpdate = $StrUpdate. ",dayhits = dayhits 1";
}else{
$StrUpdate = $StrUpdate.",dayhits = 0"
}
if(date("W",$lasthittime)== date(" W",$now)){//같은 주
$StrUpdate = $StrUpdate.",weekhits = weekhits 1"
}else{
$StrUpdate = $StrUpdate.",weekhits = 0" ;
}
if(date("m",$lasthittime)==date("m",$now)){//같은 달
$StrUpdate = $StrUpdate.", Monthhits = 월 조회수 1";
}else{
$StrUpdate = $StrUpdate.",monthhits = 0";
}
$StrUpdate = $StrUpdate.",lasthittime='$now' 여기서 "; / /클릭시간 업데이트
$fsql->query($StrUpdate);
위 내용은 포토샵 cs5 공식 중국 공식 원본 다운로드 내용을 포함하여 포토샵 cs5 공식 중국어 공식 원본 다운로드 PHP 일간, 주간, 월간 클릭 순위 통계를 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.