php 使用strtotime字符串转换成时间的解决办法

内容摘要
这篇文章主要为大家详细介绍了php 使用strtotime字符串转换成时间的简单示例,具有一定的参考价值,可以用来参考一下。

对字符串转换成时间_strtotime的使用技巧对此感兴趣的
文章正文

这篇文章主要为大家详细介绍了php 使用strtotime字符串转换成时间的简单示例,具有一定的参考价值,可以用来参考一下。

对字符串转换成时间_strtotime的使用技巧对此感兴趣的朋友,看看idc笔记做的技术笔记!

strtotime的使用技巧 strtotime 顾名思义就是字符串转换成时间,当然这个字符串可不是瞎写的,也是有他的格式的,

下面举例说明

下一秒 echo date("Y-m-d H:i:s",strtotime("+1 second"));

前一秒 echo date("Y-m-d H:i:s",strtotime("-1 second"));

下一分钟 echo date("Y-m-d H:i:s",strtotime("+1 minute"));

前一分钟 echo date("Y-m-d H:i:s",strtotime("-1 minute"));

上一小时 echo date("Y-m-d H:i:s",strtotime("-1 hour"));

下一个小时 echo date("Y-m-d H:i:s",strtotime("+1 hour"));

取得明天 echo date("Y-m-d H:i:s",strtotime("+1 day"));

取昨前天 echo date("Y-m-d H:i:s",strtotime("-2 day"));

上个星期 echo date("Y-m-d H:i:s",strtotime("-1 week"));

下个星期 echo date("Y-m-d H:i:s",strtotime("+1 week"));

上一个月 echo date("Y-m-d H:i:s",strtotime("-1 month"));

下一个月 echo date("Y-m-d H:i:s",strtotime("+1 month"));

明年 echo date("Y-m-d H:i:s",strtotime("+1 year"));

去年 echo date("Y-m-d H:i:s",strtotime("+1 year"));

把一个2009-01-01这样的日期格式转成Unix

时间戳 echo strtotime("2009-01-01");

还可以这样用 echo date("Y-m-d H:i:s",strtotime("2009-05-01 +1 month"));

怎么样很爽吧.这个函数做报表,根据时间条件做筛选时非常有用.好好应用吧

注:关于php 使用strtotime字符串转换成时间的简单示例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!