Ho una data PHP sotto forma di 2013-01-22
e voglio ottenere la data di domani nello stesso formato, quindi per esempio 2013-01-23
.
Com'è possibile con PHP?
Risposte:
Usa DateTime
$datetime = new DateTime('tomorrow');
echo $datetime->format('Y-m-d H:i:s');
O:
$datetime = new DateTime('2013-01-22');
$datetime->modify('+1 day');
echo $datetime->format('Y-m-d H:i:s');
O:
$datetime = new DateTime('2013-01-22');
$datetime->add(new DateInterval("P1D"));
echo $datetime->format('Y-m-d H:i:s');
O in PHP 5.4+:
echo (new DateTime('2013-01-22'))->add(new DateInterval("P1D"))
->format('Y-m-d H:i:s');
$tomorrow = date("Y-m-d", strtotime('tomorrow'));
o
$tomorrow = date("Y-m-d", strtotime("+1 day"));
Link della guida: STRTOTIME ()
Dato che l'hai etichettato con strtotime, puoi usarlo con il +1 day
modificatore in questo modo:
$tomorrow_timestamp = strtotime('+1 day', strtotime('2013-01-22'));
Detto questo, è una soluzione molto migliore usare DateTime .
<? php
//1 Day = 24*60*60 = 86400
echo date("d-m-Y", time()+86400);
?>
echo date ('Y-m-d',strtotime('+1 day', strtotime($your_date)));
Usa DateTime
:
Per arrivare domani da adesso:
$d = new DateTime('+1day');
$tomorrow = $d->format('d/m/Y h.i.s');
echo $tomorrow;
Risultati: 28/06/2017 08.13.20
Per ottenere domani da una data:
$d = new DateTime('2017/06/10 08.16.35 +1day')
$tomorrow = $d->format('d/m/Y h.i.s');
echo $tomorrow;
Risultati: 11/06/2017 08.16.35
Spero che sia d'aiuto!
/**
* get tomorrow's date in the format requested, default to Y-m-d for MySQL (e.g. 2013-01-04)
*
* @param string
*
* @return string
*/
public static function getTomorrowsDate($format = 'Y-m-d')
{
$date = new DateTime();
$date->add(DateInterval::createFromDateString('tomorrow'));
return $date->format($format);
}
Per strano può sembrare che funzioni perfettamente bene: date_create( '2016-02-01 + 1 day' );
echo date_create( $your_date . ' + 1 day' )->format( 'Y-m-d' );
Dovrebbe farlo
In primo luogo, inventare astrazioni corrette è sempre una chiave. chiave per leggibilità, manutenibilità ed estendibilità.
Qui, il candidato abbastanza ovvio è un file ISO8601DateTime
. Ci sono almeno due implementazioni: la prima è un datetime analizzato da una stringa e la seconda è domani. Quindi, ci sono due classi che possono essere utilizzate e la loro combinazione produce un risultato (quasi) desiderato:
new Tomorrow(new FromISO8601('2013-01-22'));
Entrambi gli oggetti sono un datetime ISO8601, quindi la loro rappresentazione testuale non è esattamente ciò di cui hai bisogno. Quindi il colpo finale è farli assumere una forma data:
new Date(
new Tomorrow(
new FromISO8601('2013-01-22')
)
);
Poiché hai bisogno di una rappresentazione testuale, non solo di un oggetto, invoca un value()
metodo.
Per ulteriori informazioni su questo approccio, dai un'occhiata a questo post .
ecco la funzione di lavoro
function plus_one_day($date){
$date2 = formatDate4db($date);
$date1 = str_replace('-', '/', $date2);
$tomorrow = date('Y-m-d',strtotime($date1 . "+1 days"));
return $tomorrow; }
$date = '2013-01-22';
$time = strtotime($date) + 86400;
echo date('Y-m-d', $time);
Dove 86400 è il numero di secondi in un giorno.