我需要将 1 个季度添加到我的日期date("Y-m-d")
。
我有2018-03-05
下个季度的约会,2018-04-01
我2018-07-05
该怎么办?
编辑我已经使用了这个代码,但我有一点问题
while ($annee <= $annenow) {
echo "$curMonth :: $annee $annenow <br>";
if($curMonth<4)
$curMonth=4;
else if($curMonth<7)
$curMonth=7;
else if($curMonth<9)
$curMonth=10;
else if($curMonth<12)
$curMonth=12;
else
{
$curMonth=1;
$anneedebut++;
}
$curQuarter = ceil($curMonth / 3);
$annee = "$anneedebut$curQuarter";
}
结果是:
09 :: 20183 20221
12 :: 20184 20221
1 :: 20191 20221
4 :: 20192 20221
7 :: 20193 20221
10 :: 20194 20221
12 :: 20194 20221
1 :: 20201 20221
4 :: 20202 20221
7 :: 20203 20221
10 :: 20204 20221
12 :: 20204 20221
1 :: 20211 20221
4 :: 20212 20221
7 :: 20213 20221
10 :: 20214 20221
12 :: 20214 20221
1 :: 20221 20221
我有quater 4重复两次?
但是我的代码非常大,如果存在的话,我会搜索到很少的代码