本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑在php中,可以利用strtotime()函数来获取前几天的时间戳。有时我们需要在一个日期上加减一定的时间间隔。可以使用 strtotime() 来计算一些日期时间间隔
本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑
在php中,可以利用strtotime()函数来获取前几天的时间戳。
有时我们需要在一个日期上加减一定的时间间隔。可以使用 strtotime() 来计算一些日期时间间隔,并将间隔后的日期以UNIX时间戳的格式返回。
strtotime() 函数有两种用法:一种是将字符串形式的、用英文文本描述的日期时间解析为 UNIX 时间戳,一种是用来计算一些日期时间的间隔。
示例:
<?php
header('content-type:text/html;charset=utf-8');
echo "今天的时间戳:".time();
echo "<br>前两天的时间戳:".strtotime("-2 day"); //前一天
echo "<br>前一天的时间戳:".strtotime("-1 day"); //前一天
echo "<br>后一天的时间戳:".strtotime("+1 day"); //后一天
?>
输出:
是不是不好比较,我们使用date()函数将其格式化为年月日格式,来具体看看:
<?php
header('content-type:text/html;charset=utf-8');
echo "今天的日期:".date("Y-m-d", time());
echo "<br>前两天的日期:".date("Y-m-d", strtotime("-2 day")); //前一天
echo "<br>前一天的日期:".date("Y-m-d", strtotime("-1 day")); //前一天
echo "<br>后一天的日期:".date("Y-m-d", strtotime("+1 day")); //后一天
?>
--结束END--
本文标题: php怎么获取前几天的时间戳
本文链接: https://lsjlt.com/news/1064.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0