13 $ date + 1年? 指定した日付から1年後の日付を取得しようとしています。 私のコードは次のようになります: $futureDate=date('Y-m-d', strtotime('+one year', $startDate)); 間違った日付を返しています。なぜ何かアイデアはありますか? 91 php strtotime
9 PHPの日付に3か月を追加する $effectiveDate日付2012-03-26を含むという変数があります。 この日付に3か月を追加しようとしていますが、失敗しました。 これが私が試したことです: $effectiveDate = strtotime("+3 months", strtotime($effectiveDate)); そして $effectiveDate = strtotime(date("Y-m-d", strtotime($effectiveDate)) . "+3 months"); 私は何が間違っているのですか?どちらのコードも機能しませんでした。 90 php date strtotime
11 PHP、明日を日付から取得 の形式のPHP日付があり、2013-01-22明日の日付を同じ形式で取得したいので、たとえば2013-01-23。 PHPでこれはどのように可能ですか? 88 php date datetime strtotime