打印时间问题

->2008/8/8 到今天相差多少天?
    $todate=strtotime(date("Y-m-d));
    $time=strtotime("2008/8/8");
    ($todate-$time)/60/60/24
->打印出昨天的时间
    date("Y-m-d h:i:s",strtotime("-1 day"));
->打印出下三个星期的时间
    date("Y-m-d h:i:s",strtotime("+ 3 weeks"));
->打印出下个月的时间
    date("Y-m-d h:i:s",strtotime("+1 month"));
->打印下一年的时间
    date("Y-m-d h:i:s",strtotime("+1 year"));
->打印1999/4/6的前三天
     date("Y-m-d h:i:s",strtotime("-3 days",strtotime("1999/4/6")));
->原格式:2010-11-23 17:30 转新格式 10年11月23日 5点30分?
     ..$int=strtotime("2010-11-23 17:30");
       date("y年m月d日h点i分",$int);

你可能感兴趣的:(时间)