“Php Strtotime plus 1 Tag” Code-Antworten

PHP -Datum Strtotime Fügen Sie Tage hinzufügen

// add 1 day to the date above
$n = date('Y-m-d', strtotime( $d . " +1 days"));

// add 1 month to the date above
$n = date('Y-m-d', strtotime( $d . " +1 month"));

// add 1 year to the date above
$n = date('Y-m-d', strtotime( $d . " +1 year"));

// subtract 1 day to the date above
$n = date('Y-m-d', strtotime( $d . " -1 days"));

// subtract 1 month to the date above
$n = date('Y-m-d', strtotime( $d . " -1 month"));

// subtract 1 year to the date above
$n = date('Y-m-d', strtotime( $d . " -1 year"));
Strange Shrew

Php Strtotime plus 1 Tag

$NewDate = date('Y-m-d', strtotime('+7 days'));
Matteoweb

Ähnliche Antworten wie “Php Strtotime plus 1 Tag”

Fragen ähnlich wie “Php Strtotime plus 1 Tag”

Weitere verwandte Antworten zu “Php Strtotime plus 1 Tag” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen