PC6下载站

分类分类

一个处理PHP中时间加减的函数

关注+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  
展开全部

相关文章

更多+相同厂商

热门推荐

  • 最新排行
  • 最热排行
  • 评分最高
排行榜

    点击查看更多

      点击查看更多

        点击查看更多

        说两句网友评论

          我要评论...
          取消