2024年09月03日 建站教程
php哪些函数可以增加一天时间戳,下面web建站小编给大家详细介绍一下!
1、利用time()+一天的秒数增加一天时间戳
<?php header("Content-type:text/html;charset=utf-8"); echo "当前时间戳为:".time()."<br>"; echo "格式化当后:".date("Y-m-d H:i:s",time())."<br><br>"; $interval = 1 * 24 * 3600; echo "增加一天的时间戳为:".(time()+$interval)."<br>"; echo "格式化当后:".date("Y-m-d H:i:s",time()+$interval)."<br>"; ?>
2、利用strtotime() 函数增加一天时间戳
<?php header("Content-type:text/html;charset=utf-8"); echo "当前时间戳为:".strtotime("now")."<br>"; echo "格式化后:".date("Y-m-d H:i:s",strtotime("now"))."<br><br>"; echo "增加一天的时间戳为:".strtotime("+1 day")."<br>"; echo "格式化后:".date("Y-m-d H:i:s",strtotime("+1 day")); ?>
本文链接:http://so.lmcjl.com/news/12148/