PHP 时间戳取整问题
时间戳是10位的,取的是当前时间戳:$nowtime=strtotime(date('Y-m-dH:i:s'));//当前时间戳得到的$nowtime有时候是139383...
时间戳是10位的,取的是当前时间戳:
$nowtime = strtotime(date('Y-m-d H:i:s')); //当前时间戳
得到的 $nowtime 有时候是 1393834011,有时候是 1393834062
我想实现一功能,怎么样能让时间戳取整变成这样的:1393834020,1393834070?
不能直接这么写:strtotime(date('Y-m-d H:i')); 展开
$nowtime = strtotime(date('Y-m-d H:i:s')); //当前时间戳
得到的 $nowtime 有时候是 1393834011,有时候是 1393834062
我想实现一功能,怎么样能让时间戳取整变成这样的:1393834020,1393834070?
不能直接这么写:strtotime(date('Y-m-d H:i')); 展开
2014-03-03
展开全部
<?php
$nowtime = strtotime(date('Y-m-d H:i:s')); //当前时间戳
echo ceil($nowtime/10)*10;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询