-2

我有一个表单,用户必须输入示例用户输入 2 天的天数,它将扣除 2 天。结果将如下所示

Current Date: 2012-02-10 
Last date: 2012-02-08

每个持续时间的时间将在晚上 11:59 设置一次。因为从这个计算中我必须从 sql 中找到与持续时间匹配的数据...

Current Date: 2012-02-10 
Last date: 2012-02-08
List data xyz from the date is 30 times

我怎样才能在 PHP 中做到这一点?

4

2 回答 2

1

这?

$now = $_SERVER["REQUEST_TIME"];
$2daysago = $now - 60 * 60 * 24 * 2;
echo date("Y-m-d H:i:s", $2daysago);
于 2012-05-10T16:40:55.103 回答
0

您可以使用类似echo date("Y-m-d 23:59:59",strtotime("-2 days"));Just make that "2" 用户输入的变量,并确保他们使用整数。不确定这是否是您要查找的内容或很难说的其他问题。

于 2012-05-10T17:00:27.293 回答