怎么在php中利用date与strtotime函数对指定的日期进行输出

2023-06-12,,

怎么在php中利用datestrtotime函数对指定的日期进行输出?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。

在php中date和strtotime函数都是对日期操作的,但是在生成上面date和strtotime是不一样的,一个是数字日期一个是 Unix 时间戳了,但我们都可以生成相同的日期,下面来看两个函数的例子。

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'));

看完上述内容,你们掌握怎么在php中利用date与strtotime函数对指定的日期进行输出的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注本站行业资讯频道,感谢各位的阅读!

《怎么在php中利用date与strtotime函数对指定的日期进行输出.doc》

下载本文的Word格式文档,以方便收藏与打印。