Mam zmienną o nazwie $effectiveDate
zawierającą datę 2012-03-26 .
Próbuję dodać trzy miesiące do tej daty i nie udało mi się.
Oto, czego próbowałem:
$effectiveDate = strtotime("+3 months", strtotime($effectiveDate));
i
$effectiveDate = strtotime(date("Y-m-d", strtotime($effectiveDate)) . "+3 months");
Co ja robię źle? Żaden fragment kodu nie działał.