添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

Yawee

PHP获取今天、昨天 、本周、上周、本月、上月、本季度、上季度等日期的方法
使用PHP的日期和时间函数来实现快速获取今天、昨天、本周、本月等操作,这些代码中,date() 函数用于格式化日期...
扫描右侧二维码阅读全文
08
2023/07

PHP获取今天、昨天 、本周、上周、本月、上月、本季度、上季度等日期的方法

  • 博主:
  • 发布时间:
  • 3247 次浏览
  • 3 条评论
  • 2052字数
  • 分类: 学无止境
  • $curQuarter = ceil(date('n') / 3); // 当前季度
    $firstDay = date('Y-m-d', strtotime(date('Y').'-'.($curQuarter*3-2).'-1')); // 当前季度第一天
    $lastDay = date('Y-m-d', strtotime(date('Y').'-'.($curQuarter*3).'-'.date('t', strtotime(date('Y').'-'.($curQuarter*3).'-1')))); // 当前季度最后一天


    获取上季度的开始日期和结束日期

    $curQuarter = ceil(date('n') / 3); // 当前季度
    $lastQuarter = $curQuarter - 1; // 上季度
    if ($lastQuarter == 0) {
        $lastQuarter = 4;
    $firstDay = date('Y-m-d', strtotime(date('Y').'-'.($lastQuarter*3-2).'-1')); // 上季度第一天
    $lastDay = date('Y-m-d', strtotime(date('Y').'-'.($lastQuarter*3).'-'.date('t', strtotime(date('Y').'-'.($lastQuarter*3).'-1')))); // 上季度最后一天

    PHP获取今天、昨天 、本周、上周、本月、上月、本季度、上季度等日期的方法