私はこの形式で日付を持っています:
2009-01-01
同じ日付で1年前の日付を返すにはどうすればよいですか?
私はこの形式で日付を持っています:
2009-01-01
同じ日付で1年前の日付を返すにはどうすればよいですか?
回答:
// set your date here
$mydate = "2009-01-01";
/* strtotime accepts two parameters.
The first parameter tells what it should compute.
The second parameter defines what source date it should use. */
$lastyear = strtotime("-1 year", strtotime($mydate));
// format and display the computed date
echo date("Y-m-d", $lastyear);
この質問への回答として受け入れられる答えはたくさんありますがsub
、\Datetime
オブジェクトを使用するメソッドの例は見当たりません:https : //www.php.net/manual/en/datetime.sub.php
したがって、参照の\DateInterval
ために、\Datetime
オブジェクトを変更するためにa を使用することもできます。
$date = new \DateTime('2009-01-01');
$date->sub(new \DateInterval('P1Y'));
echo $date->format('Y-m-d');
どちらが戻ります:
2008-01-01
の詳細について\DateInterval
は、ドキュメントを参照してください:https : //www.php.net/manual/en/class.dateinterval.php
次の関数を使用して、日付から1年または任意の年を減算できます。
function yearstodate($years) {
$now = date("Y-m-d");
$now = explode('-', $now);
$year = $now[0];
$month = $now[1];
$day = $now[2];
$converted_year = $year - $years;
echo $now = $converted_year."-".$month."-".$day;
}
$number_to_subtract = "1";
echo yearstodate($number_to_subtract);
上記の例を見ると、次も使用できます
$user_age_min = "-"."1";
echo date('Y-m-d', strtotime($user_age_min.'year'));