您好,欢迎访问一九零五行业门户网

php 时间函数strtotime 使用详解

这篇文章介绍的内容是关于php  时间函数strtotime 使用详解 ,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
定义和用法 strtotime() 
strtotime() 函数将任何英文文本的日期时间描述解析为 unix 时间戳。
语法 
strtotime(time,now)
参数描述
time 规定要解析的时间字符串。
now 用来计算返回值的时间戳。如果省略该参数,则使用当前时间。
说明 
该函数预期接受一个包含美国英语日期格式的字符串并尝试将其解析为 unix 时间戳(自 january 1 1970 00:00:00 gmt 起的秒数),其值相对于 now 参数给出的时间,如果没有提供此参数,则用系统当前时间。 
该函数将使用 tz 环境变量(如果有的话)来计算时间戳。自 php 5.1.0 起有更容易的方法来定义时区用于所有的日期/时间函数。此过程在 date_default_timezone_get() 函数页面中有说明。
// #1 echo strtotime("now"); // 获取当前时间戳 echo date('y-m-d h:i:s', strtotime("now")); // #2 echo strtotime("2015-06-11 10:11:00"); // 获取指定的时间戳 echo date('y-m-d h:i:s', strtotime("2015-06-11 10:11:00")); // #3 echo strtotime("3 october 2005"); // 获取指定的时间戳[等同于strtotime("2005-10-03")] echo date('y-m-d h:i:s', strtotime("3 october 2005")); // #4 echo strtotime("+5 hours"); // 当前时间加五个小时 [对比#1] echo date('y-m-d h:i:s', strtotime("+5 hours")); // #5 echo strtotime("+1 day"); // 当前时间加1天 [对比#1] echo date('y-m-d h:i:s', strtotime("+1 day")); // #6 echo strtotime("+2 days"); // 当前时间加多天 名词变复数 [对比#1] echo date('y-m-d h:i:s', strtotime("+2 days")); // #7 echo strtotime("+1 week 3 days 7 hours 5 seconds"); // 当前时间加 1周 3天 7小时 5秒 [对比#1] echo date('y-m-d h:i:s', strtotime("+1 week 3 days 7 hours 5 seconds")); // #8 echo strtotime("next monday"); // 当前时间下一个周一 echo date('y-m-d h:i:s', strtotime("next monday")); // #9 echo strtotime("last sunday"); // 当前时间前一个周日 echo date('y-m-d h:i:s', strtotime("last sunday")); // #10 echo strtotime("-1 day",strtotime("2018-07-01 10:11:00")); // 给定时间 减去一天 echo date('y-m-d h:i:s', strtotime("-1 day",strtotime("2018-07-01 10:11:00")));
时间名词: 
年year 复数years 
月month 复数months 
周week 复数weeks 
日day 复数days 
时hour 复数hours 
分second 复数seconds 
秒minute 复数minutes 
上一个last 
下一个next 
一月january 
二月february 
三月march 
四月april 
五月may 
六月june 
七月july 
八月august 
九月september 
十月october 
十一月november 
十二月december                
相关推荐:
php 使用strtotime获取上个月、下个月、本月的日期代码实例
php中strtotime函数详解
以上就是php 时间函数strtotime 使用详解的详细内容。
其它类似信息

推荐信息