php 时间相减
时间:2006-03-29 来源:freespray
获取当前时间:$now=date("Y-n-j h:i:s");
$last="2006-3-28 01:51:17";
$now="2006-3-28 02:51:17";
$diff=strtotime($now)-strtotime($last);
echo "时间相差".$diff;
echo "last".strtotime($last);
echo "now".strtotime($now);
$last="2006-3-28 01:51:17";
$now="2006-3-28 02:51:17";
$diff=strtotime($now)-strtotime($last);
echo "时间相差".$diff;
echo "last".strtotime($last);
echo "now".strtotime($now);
相关阅读 更多 +