分类分类
关注+2010-02-02作者:
在开发过程当中对于时间的操作很是让人头疼。在PHP文档中找到了一个很好的函数,可以对时间进行加减,还是很有意思的。
int strtotime ( string time [, int now] )
返回类型 int
函数可用于时间转换和加减。
下面将举个小例子,获得当前时间加上一周后的时间。
例子:
//获得当前时间 //date()格式化时间返回String类型。 $current_date = date(’Y-m-d’,time()); //根据当前时间加一周后 $weekLater = date(’Y-m-d’,strtotime("$current_date + 1 week")); echo $weekLate; // 2009-05-26 加一天的日期 $tomorrow = date(’Y-m-d’,strtotime("2009-05-26 + 1 day")); echo $tomorrow; // 2009-05-27 |
相关文章
更多+相同厂商
热门推荐
点击查看更多
点击查看更多
点击查看更多
说两句网友评论