最简单的方法可以在PHP中恰好1个月获得日期的UNIX时间戳记
我想从当天开始的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您只需要使用
strtotime("-1 Month");
函数。这将返回 UNIX 时间戳。You just need to use the
strtotime("-1 month");
function. That will return a UNIX timestamp.如何使用 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.