标签:time bsp date font sub strtotime ceil 系统 str
<?PHP
$time1 = strtotime(date( "Y-m-d H:i:s")); //当前的系统时间
$time2 = strtotime("2018-10-1 00:00:00"); //放假的时间
$time3 = strtotime("2019-1-1"); //2010年元旦
$sub1 = ceil(($time2 - $time1) / 3600); //(60秒*60分)秒/小时
$sub2 = ceil(($time3 - $time1) / 86400); //(60秒*60分*24小时)秒/天
echo "离放假还有<font color=red> $sub1 </font>小时!!!" ;
echo "<p>";
echo "离2019年元旦还有<font color=red>$sub2 </font>天!!!";
?>
标签:time bsp date font sub strtotime ceil 系统 str
原文地址:https://www.cnblogs.com/wuliangxiaohei/p/8979218.html