gpt4 book ai didi

php 获取一周前的日期

转载 作者:可可西里 更新时间:2023-11-01 12:22:51 26 4
gpt4 key购买 nike

我正在尝试为一周内的元素创建一个选择器。我得到这样的时间戳 Sun, 02 Jun 2013 22:05:00 GMT 但选择器不应受时间影响

例如

<?

$curdate = date( 'D, d M Y H:I:s' );
$olddate = "Sun, 02 Jun 2013 22:05:00 GMT";

if($curdate < $olddate){
// Date is with in a week
} else {
// Date is older then a week
}

不过这样的话,应该不受当天上线时间的影响。但是我无法让它工作...

最佳答案

PHP 的 strtotime() 函数正是您要找的。

例如:

echo date('jS F Y H:i.s', strtotime('-1 week'));

您可以将许多不同的字符串输入到 strtotime() 函数中,例如:

strtotime('yesterday');
strtotime('-2 days ago');
strtotime('+5 days');

关于php 获取一周前的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17068380/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com