PHP编程获取各个时间段具体时间的方法
本文实例讲述了PHP编程获取各个时间段具体时间的方法。分享给大家供大家参考,具体如下:
"; echo"昨天:".date("Y-m-d",strtotime("-1day")),"
"; echo"明天:".date("Y-m-d",strtotime("+1day"))."
"; echo"一周后:".date("Y-m-d",strtotime("+1week"))."
"; echo"一周零两天四小时两秒后:".date("Y-m-dG:H:s",strtotime("+1week2days4hours2seconds"))."
"; echo"下个星期四:".date("Y-m-d",strtotime("nextThursday"))."
"; echo"上个周一:".date("Y-m-d",strtotime("lastMonday"))."
"; echo"一个月前:".date("Y-m-d",strtotime("lastmonth"))."
"; echo"一个月后:".date("Y-m-d",strtotime("+1month"))."
"; echo"十年后:".date("Y-m-d",strtotime("+10year"))."
"; /* strtotime()函数的作用是将日期时间描述解析为Unix时间戳 intstrtotime(stringtime[,intnow]) */ ?>
运行结果如下:
今天:2017-05-26 昨天:2017-05-25 明天:2017-05-27 一周后:2017-06-02 一周零两天四小时两秒后:2017-06-046:06:39 下个星期四:2017-06-01 上个周一:2017-05-22 一个月前:2017-04-26 一个月后:2017-06-26 十年后:2027-05-26
PS:这里再为大家推荐几款时间及日期相关工具供大家参考使用:
在线日期/天数计算器:
http://tools.jb51.net/jisuanqi/date_jisuanqi
在线日期计算器/相差天数计算器:
http://tools.jb51.net/jisuanqi/datecalc
在线日期天数差计算器:
http://tools.jb51.net/jisuanqi/onlinedatejsq
Unix时间戳(timestamp)转换工具:
http://tools.jb51.net/code/unixtime
更多关于PHP相关内容感兴趣的读者可查看本站专题:《php日期与时间用法总结》、《PHP数组(Array)操作技巧大全》、《PHP基本语法入门教程》、《PHP运算与运算符用法总结》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。