Home >php教程 >php手册 >php中strtotime给个时间返回该时间所在的星期一

php中strtotime给个时间返回该时间所在的星期一

WBOY
WBOYOriginal
2016-06-13 10:16:01901browse

一个简单的php中strtotime给个时间返回该时间所在的星期一实现代码,有需要的朋友可参考。

strtotime() 函数将任何英文文本的日期时间描述解析为 Unix 时间戳。

很简单:

 代码如下 复制代码

echo strtotime('-1 Mon',strtotime("2010-01-01"));//返回日期所在时间的星期一

echo strtotime('Mon',strtotime("2010-01-01"));//返回日期所在时间的下一个星期一的时间

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn