php函数强大的 strtotime

半城伤御伤魂 提交于 2019-12-16 18:13:17
使用strtotime可以将各种格式的时间字符串转换为时间戳

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
转换常规时间格式
echo date('Y-m-d H:i:s'strtotime('2016-01-30 18:00')).PHP_EOL;
echo date('Y-m-d H:i:s'strtotime('20160130180001')).PHP_EOL;
 
转换自然时间描述
//昨天
echo date('Y-m-d H:i:s'strtotime('yesterday')).PHP_EOL;
//上周
echo date('Y-m-d H:i:s'strtotime('last week')).PHP_EOL;
//本周开始时间
echo date('Y-m-d H:i:s'strtotime('this week midnight')).PHP_EOL;
//本月开始时间
echo date('Y-m-d H:i:s'strtotime('first day of this month midnight')).PHP_EOL;
 
//计算相对时间
echo date('Y-m-d H:i:s'strtotime('+1 month')).PHP_EOL;

完整的php时间描述文档可以参考 http://php.net/manual/zh/datetime.formats.relative.php

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!