Questions tagged «strtotime»


9
在PHP中添加三个月的日期
我有一个名为$effectiveDate包含日期2012-03-26的变量。 我想在此日期之前增加三个月,但没有成功。 这是我尝试过的: $effectiveDate = strtotime("+3 months", strtotime($effectiveDate)); 和 $effectiveDate = strtotime(date("Y-m-d", strtotime($effectiveDate)) . "+3 months"); 我究竟做错了什么?这两段代码都不起作用。
88 php  date  strtotime 

13
$ date + 1年?
我正在尝试从指定的日期开始算起一年的日期。 我的代码如下所示: $futureDate=date('Y-m-d', strtotime('+one year', $startDate)); 返回错误的日期。有什么想法吗?
87 php  strtotime 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.