php中date和string类型_php中date和strtotime函数输出指定日期

更新时间:2019-06-27    来源:php函数    手机版     字体:

【www.bbyears.com--php函数】

php中经常会用到date函数和strtotime函数,这2个函数大家一定并不陌生,今天和大家分享下使用技巧。
strtotime — 将任何英文文本的日期时间描述解析为 Unix 时间戳

 代码如下

date_default_timezone_set("Asia/Shanghai");
//计算昨天的时间,我们用:
date("Ymd",time()-3600);
//生成昨天的时间
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"));
//生成下个月最后一天的时间
date("Ymd",strtotime("last day of next month"));
//下个周的星期一
date("Ymd",strtotime("next monday"));

本文来源:http://www.bbyears.com/jiaocheng/55463.html