php 如何统计本周 本月
Posted 进阶的thinker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 如何统计本周 本月相关的知识,希望对你有一定的参考价值。
//本周
$day = date(‘w‘);
$beginTime = date(‘Y-m-d‘,strtotime("-{$day}days"));
//本月
$day = date(‘d‘)-1;
$beginTime = date(‘Y-m-d‘,strtotime("-{$day}days"));
以上是关于php 如何统计本周 本月的主要内容,如果未能解决你的问题,请参考以下文章