1. 首页
  2. 数据库
  3. 其它
  4. PHP 日周月点击排行统计

PHP 日周月点击排行统计

上传者: 2020-12-23 02:03:05上传 PDF文件 30.52KB 热度 15次
复制代码 代码如下: $now=time(); //当前时间 $StrUpdate = “Update $tbl_article set hits=hits+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 = $StrUpdat
用户评论