php哪些函数可以增加一天时间戳

php哪些函数可以增加一天时间戳,下面编程教程网小编给大家详细介绍一下!

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"));
?>
以上是编程学习网小编为您介绍的“php哪些函数可以增加一天时间戳”的全面内容,想了解更多关于 php入门 内容,请继续关注编程基础学习网。

本文标题为:php哪些函数可以增加一天时间戳

基础教程推荐