首页 > 语言 > PHP > 正文

PHP编程获取各个时间段具体时间的方法

2024-05-04 23:57:35
字体:
来源:转载
供稿:网友

本文实例讲述了PHP编程获取各个时间段具体时间的方法。分享给大家供大家参考,具体如下:

<?phpecho "今天:".date("Y-m-d")."<br>";echo "昨天:".date("Y-m-d",strtotime("-1 day")), "<br>";echo "明天:".date("Y-m-d",strtotime("+1 day")). "<br>";echo "一周后:".date("Y-m-d",strtotime("+1 week")). "<br>";echo "一周零两天四小时两秒后:".date("Y-m-d G:H:s",strtotime("+1 week 2 days 4 hours 2 seconds")). "<br>";echo "下个星期四:".date("Y-m-d",strtotime("next Thursday")). "<br>";echo "上个周一:".date("Y-m-d",strtotime("last Monday"))."<br>";echo "一个月前:".date("Y-m-d",strtotime("last month"))."<br>";echo "一个月后:".date("Y-m-d",strtotime("+1 month"))."<br>";echo "十年后:".date("Y-m-d",strtotime("+10 year"))."<br>";/*strtotime()函数的作用是将日期时间描述解析为 Unix 时间戳int strtotime ( string time [, int now] )*/?>

运行结果如下:

今天:2017-05-26昨天:2017-05-25明天:2017-05-27一周后:2017-06-02一周零两天四小时两秒后:2017-06-04 6:06:39下个星期四:2017-06-01上个周一:2017-05-22一个月前:2017-04-26一个月后:2017-06-26十年后:2027-05-26

希望本文所述对大家PHP程序设计有所帮助。


注:相关教程知识阅读请移步到PHP教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选