1.获取当前日期时间的时间戳:
echo time();
获取当前日期时间:
echo date("Y/m/d H:i:s");
2.日期转换为时间戳:
echo strtotime(date("Y/m/d"));
?$catime = strtotime($oldtime);
时间戳转换为日期:
echo date('Y-m-d',time());
3.打印明天此时的时间戳
echo strtotime("+1 day");
当前时间:
echo date("Y-m-d H:i:s",time()) ;
指定时间:
echo date("Y-m-d H:i:s",strtotime("+1 day")) ;
html中时间戳转化为时间
{$new.addtime|date="Y-m-d",###}
同理,不仅仅可以+year 还可以是天, 月日都可以的,如下代码:
$begin_year = strtotime((date("Y",time())-1)."-1"."-1");上一年1月一日时间戳
?$jin_year = strtotime((date("Y",time()))."-1"."-1");今年1月一日时间戳
?
echo strtotime("now"), "\n";
echo strtotime("10 September 2000"), "\n";
echo strtotime("+1 day"), "\n";
echo strtotime("+1 week"), "\n";
echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n";
echo strtotime("next Thursday"), "\n";
echo strtotime("last Monday"), "\n";
时间格式基础上添加一个月时间:
echo date("Y-m-d", strtotime("+1 months", strtotime("2010-10-06"))), "\n";
|