博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP 获取给定时间的周日时间或月末时间或每天
阅读量:5153 次
发布时间:2019-06-13

本文共 562 字,大约阅读时间需要 1 分钟。

//获取给定时间的周日时间或月末时间或每天    private function endDate ($time, $type = 1, $openTime = '20:00:00')    {        if ($type == 1) {            return date('Y-m-d ' . $openTime, $time);        } elseif ($type == 2) {            $w = strftime('%u', $time);//获取是周几的数字1-7            return date('Y-m-d ' . $openTime, $time + (7 - $w) * 24 * 60 * 60);        } elseif ($type == 3) {            $t = date('t', $time);//获取给定日期月末是几号,数字            return date('Y-m-' . $t . ' ' . $openTime, $time);        }        return '';    }

 

转载于:https://www.cnblogs.com/deverz/p/9676182.html

你可能感兴趣的文章
ASP.NET Core Docker部署
查看>>
python使用psutil获取服务器信息
查看>>
移动页面div居中效果代码
查看>>
监控网站是否异常的shell脚本
查看>>
面试题
查看>>
【codevs1404】字符串匹配 KMP
查看>>
制作 Flex 悬停提示帮助文档(转)
查看>>
tcpdump高级过滤技巧
查看>>
Spring学习笔记
查看>>
Python Day17
查看>>
软考之J2SE
查看>>
ZOJ 3494 BCD Code (数位DP,AC自动机)
查看>>
第十四周学习进度
查看>>
python 数组操作
查看>>
ASP.NET MVC全局異常捕獲過濾器
查看>>
leetcode26 - Remove Duplicates from Sorted Array - easy
查看>>
Codeforces Round#429(Div.2)
查看>>
Abiword中字符操作
查看>>
Abiword页面布局
查看>>
音频压缩SPEEX应用,对讲机
查看>>