如何计算未来日期。 今天的日期是:2015-09-05 如果一天是120,那么将来的日期是什么。
我在php中创建程序,用户付费在线, 我们将从付款日期起120天的有效日期。 那么有效日期是什么。
我会接受那个人回答我正确的答案第1次
答案 0 :(得分:3)
以下内容将为您提供未来120天的日期:
strtotime("+120 days");
strtotime函数还带有第二个参数,如果要将120天添加到特定日期而不是当前日期,可以使用该参数。
有关详细信息,请参阅official documentation。
答案 1 :(得分:0)
$ expirydate = date('Y-m-d G:i:s',strtotime('+ 120 days'));
答案 2 :(得分:0)
'time()'将为您提供unix时间戳(自1970年1月1日起经过的毫秒数)。
120天(毫秒)可以像'120 * 24 * 60 * 60'一样计算。
您可以按'日期($格式)'获取当前日期,然后将偏移量添加到'date($ format,$ offset)'。
以下是一个例子:
<?php
$future = time() + (120*24*60*60);
$format = "Y-m-d";
$now = date($format);
$future_date = date($format, $future);
?>
您还可以查看类似示例here