作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我是 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/
我是一名优秀的程序员,十分优秀!