Ho una data in questo formato:
2009-01-01
Come faccio a restituire la stessa data ma 1 anno prima?
Ho una data in questo formato:
2009-01-01
Come faccio a restituire la stessa data ma 1 anno prima?
Risposte:
// 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);
Sebbene ci siano molte risposte accettabili in risposta a questa domanda, non vedo alcun esempio del sub
metodo che utilizza l' \Datetime
oggetto: https://www.php.net/manual/en/datetime.sub.php
Quindi, come riferimento, puoi anche usare a \DateInterval
per modificare un \Datetime
oggetto:
$date = new \DateTime('2009-01-01');
$date->sub(new \DateInterval('P1Y'));
echo $date->format('Y-m-d');
Che ritorna:
2008-01-01
Per ulteriori informazioni su \DateInterval
, fare riferimento alla documentazione: https://www.php.net/manual/en/class.dateinterval.php
È possibile utilizzare la seguente funzione per sottrarre 1 o qualsiasi anno da una data.
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);
E guardando gli esempi sopra puoi anche usare quanto segue
$user_age_min = "-"."1";
echo date('Y-m-d', strtotime($user_age_min.'year'));