最简单的方法可以在PHP中恰好1个月获得日期的UNIX时间戳记

发布于 2024-10-29 06:25:54 字数 240 浏览 1 评论 0原文

我想从当天开始的30天,在当天获得UNIX时邮票。 最好的方法是什么?

我可以用它来获得30天后的日期吗?这是最好的方法吗?

$day = date('Y-m-d', strtotime('-30 days'));

A Google搜索将我带到PHP中的mktime()功能。但是,如何将两者结合并获得当天的UNIX时间戳记?什么是最简单,最快的方法?

I want to get the unix time stamp for that day exactly 30days back from current day.
What is the best method?

Can i use this to get the date 30 days back, is this the best method?

$day = date('Y-m-d', strtotime('-30 days'));

a google search brings me to mktime() function in php. But how do i combine both and get the unix time stamp for the day? What is the easiest and fastest method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

后eg是否自 2024-11-05 06:25:54

您只需要使用 strtotime("-1 Month"); 函数。这将返回 UNIX 时间戳。

You just need to use the strtotime("-1 month"); function. That will return a UNIX timestamp.

扛刀软妹 2024-11-05 06:25:54
$date = date_create();
date_sub($date, date_interval_create_from_date_string('1 m'));
echo date_format($date, 'U');
$date = date_create();
date_sub($date, date_interval_create_from_date_string('1 m'));
echo date_format($date, 'U');
旧伤慢歌 2024-11-05 06:25:54

如何使用 strtotime 和 date 获取相对于今天的上个月和上一年? 观看这个问题。有关于有趣的 strtotime("-1 Month"); bug 的讨论。

How to get previous month and year relative to today, using strtotime and date? watch this question. there is the discussion about the funny strtotime("-1 month"); bug.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文