$effectiveDate
日付2012-03-26を含むという変数があります。
この日付に3か月を追加しようとしていますが、失敗しました。
これが私が試したことです:
$effectiveDate = strtotime("+3 months", strtotime($effectiveDate));
そして
$effectiveDate = strtotime(date("Y-m-d", strtotime($effectiveDate)) . "+3 months");
私は何が間違っているのですか?どちらのコードも機能しませんでした。