当前位置:首页 > PHP教程 > php日期 > 列表

php中date和strtotime函数输出指定日期

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-22 16:56:43 浏览: 评论:0 

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

php中经常会用到date函数和strtotime函数,这2个函数大家一定并不陌生,今天和大家分享下使用技巧.

strtotime — 将任何英文文本的日期时间描述解析为 Unix 时间戳,代码如下:

  1. date_default_timezone_set('Asia/Shanghai'); 
  2. //计算昨天的时间,我们用: 
  3. date("Ymd",time()-3600); 
  4. //生成昨天的时间 
  5. date("Ymd",strtotime('yesterday')); 
  6. date("Ymd",strtotime('-1 day')); 
  7. //生成前天的时间 
  8. date("Ymd",strtotime('yesterday -1 day')); 
  9. date("Ymd",strtotime('-2 day')); 
  10. //生成3天之后的时间 
  11. date("Ymd",strtotime('+3 day')); 
  12. //生成一个月前的时间 
  13. date("Ymd",strtotime('-1 month')); 
  14. //开源代码phpfensi.com 
  15. //生成下个月最后一天的时间 
  16. date("Ymd",strtotime('last day of next month')); 
  17. //下个周的星期一 
  18. date("Ymd",strtotime('next monday'));

Tags: strtotime php输出日期

分享到: