概述
all from : http://www.php.net/manual/zh/function.strtotime.php
strtotime — 将任何英文文本的日期时间描述解析为 Unix 时间戳
date_default_timezone_set('Asia/Shanghai');
计算昨天的时间,我们用:
date("Ymd",time()-3600);
可以的
另外我们还可以用strtotime()来简单的生成时间,例如:
//生成昨天的时间
date("Ymd",strtotime('yesterday'));
date("Ymd",strtotime('-1 day'));
//生成前天的时间
date("Ymd",strtotime('yesterday -1 day'));
date("Ymd",strtotime('-2 day'));
//生成3天之后的时间
date("Ymd",strtotime('+3 day'));
//生成一个月前的时间
date("Ymd",strtotime('-1 month'));
甚至还可以这么用:
//生成下个月最后一天的时间 - -! 看到这个,你明白了其实你可以用自然语言直接描述~~~php的strtotime()来任意取得自然时间~~太强大了~~
date("Ymd",strtotime('last day of next month'));
//下个周的星期一
date("Ymd",strtotime('next monday'));
strtotime()函数很好用,可以多看看相关技巧~~
最后
以上就是笑点低酒窝为你收集整理的php 中的date和strtotime函数的全部内容,希望文章能够帮你解决php 中的date和strtotime函数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复