欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

phpcms 查询每日发表内容

程序员文章站 2023-12-25 15:21:15
...
phpcms 查询每日发表内容
<?php


defined('IN_PHPCMS') or exit('No permission resources.');

class tongji{

    function __construct(){

        $this->db = pc_base::load_model("news_model");

    }

    function postnum(){

        $end = $_GET['end'] ? strtotime($_GET['end']) : time();

        $i = 0;

        while($i < 10){

            $daystart = strtotime(" -1 day",$end);

            $dayend = $end; 

            $where = "inputtime > $daystart and inputtime < $dayend ";


            $number = $this->db->count($where);

            echo date("Y-m-d",$daystart)."发表了".$number."<br/>";

            $end = $daystart;

            $i++;

            

        }

    }

}

以上就是phpcms 查询每日发表内容的内容,更多相关内容请关注PHP中文网(www.php.cn)!

上一篇:

下一篇: