application\common\task\Addview.php
修改这个文件
我增加了cms文章点击量的代码,into_sql("UPDATE qb_cms_content1 SET `view`=`view`+FLOOR(1 + RAND()*3)");
但是,怎么让他只增加24小时内,或,当天发的文章的点击量呢
where (create_time>.(time()-3600*24) and status>0)
$time = time()-3600*24;
into_sql("UPDATE qb_cms_content1 SET `view`=`view`+FLOOR(1 + RAND()*3) where `create_time`>$time and status>0");
}