PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 每日技巧 >> 

strtotime的使用技巧

strtotime的使用技巧

来源:phperz.com  作者:phperz.com  发布时间:2009-09-09
strtotime的使用技巧 strtotime 顾名思义就是字符串转换成时间,

strtotime的使用技巧

strtotime 顾名思义就是字符串转换成时间,当然这个字符串可不是瞎写的,也是有他的格式的,
下面举例说明

下一秒
echo date("Y-m-d H:i:s",strtotime("+1 second"));
前一秒
echo date("Y-m-d H:i:s",strtotime("-1 second"));
下一分钟
echo date("Y-m-d H:i:s",strtotime("+1 minute"));
前一分钟
echo date("Y-m-d H:i:s",strtotime("-1 minute"));
上一小时
echo date("Y-m-d H:i:s",strtotime("-1 hour"));
下一个小时
echo date("Y-m-d H:i:s",strtotime("+1 hour"));
取得明天
echo date("Y-m-d H:i:s",strtotime("+1 day"));
取昨前天
echo date("Y-m-d H:i:s",strtotime("-2 day"));
上个星期
echo date("Y-m-d H:i:s",strtotime("-1 week"));
下个星期
echo date("Y-m-d H:i:s",strtotime("+1 week"));
上一个月
echo date("Y-m-d H:i:s",strtotime("-1 month"));
下一个月
echo date("Y-m-d H:i:s",strtotime("+1 month"));


明年
echo date("Y-m-d H:i:s",strtotime("+1 year"));
去年
echo date("Y-m-d H:i:s",strtotime("+1 year"));

把一个2009-01-01这样的日期格式转成Unix 时间戳
echo strtotime("2009-01-01");

还可以这样用
echo date("Y-m-d H:i:s",strtotime("2009-05-01 +1 month"));

怎么样很爽吧.这个函数做报表,根据时间条件做筛选时非常有用.好好应用吧


延伸阅读:
PHP的日期时间函数date()详解
解决date函数时差8小时的问题
PHP 5.3的date_create_from_format()函数
date与gmdate的区别
用date_default_timezone_set设定php脚本日期函数的默认时区
Tags: 技巧   time   date   strtotime   strtotime   date   时间   使用  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号