gpt4 book ai didi

php - 如何在 HTML 代码中的 PHP 中的日期中添加 2 个月?

转载 作者:可可西里 更新时间:2023-10-31 22:13:33 26 4
gpt4 key购买 nike

我是 PHP 新手,我想在 html 代码中向特定日期添加 2 个月。我该怎么做?请指导我,

这是我使用的代码:

    private function inputExpiryDate() {
$value = $this->expiryDate;
$html = "";
$html .= '<label for="expirydate">Expiry Date:</label>';
$html .= '<input type="text" readonly name="expirydate" id="expirydate" value="'.$value.'">';
$html .= '<input type="button" id="expirydatebutton" onclick="getExpiryDate()">' . PHP_EOL;
return $html;
}

问题是我将如何添加这个

$date = strtotime(date("Y-m-d", strtotime($date)) . " +2 month"); ?? 

非常感谢任何帮助。

最佳答案

在进行相对日期更改时,您不必分解 $date 值即可使用它。这应该按预期工作:

$date = date('Y-m-d', strtotime("$date +1 month"));

关于php - 如何在 HTML 代码中的 PHP 中的日期中添加 2 个月?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12792926/

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