AdminStatisticsController.php 1.1 KB
<?php
/**
 * Created by PhpStorm.
 * User: ruidiudiu
 * Date: 2018/11/21
 * Time: 17:20
 */

namespace app\portal\controller;


use cmf\controller\AdminBaseController;
use think\Db;

/**
 * Class AdminStatisticsController
 * @package app\portal\controller
 * @adminMenuRoot(
 *     'name'   =>'数据统计',
 *     'action' =>'index',
 *     'parent' =>'',
 *     'display'=> true,
 *     'order'  => 1,
 *     'icon'   =>'th',
 *     'remark' =>'数据统计'
 * )
 */
class AdminStatisticsController extends AdminBaseController{

    public function index(){

        $week=array();
        for ($i = 0; $i <= 15; $i++){
            $week[15-$i]=strtotime(date('Ymd',strtotime("-$i week")));
        }


        dump($week);

        $month=array();
        for ($i = 0; $i <= 24; $i++){
            $month[24-$i]=strtotime(date('Y-m-1',strtotime("-$i Month")));
        }
        dump($month);

        echo strtotime('10:15:30');

        $where['start_time']=['between',[strtotime(date('Y-m-d 7:i:s')),strtotime(date('Y-m-d 12:i:s'))]];
        $num=Db::name('order')->where($where)->count();

        dump($num);

        return $this->fetch();
    }




}