“PHP -Datum heute plus 1 Monat” Code-Antworten

1 Monat PHP

$time = strtotime("2010.12.11");
$final = date("Y-m-d", strtotime("+1 month", $time));
Pleasant Puma

PHP -Datum heute plus 1 Monat

$future_timestamp = strtotime("+1 month");
$data = date('Y-m-d', $future_timestamp);
Matteoweb

in Datumsfunktion 1 Monat und - 1 Tag in PHP

<?php
$months = n; // Here n = …..-2,-1,0,1,2, …..(months to add or subtract)
$years = n;  // Here n = …..-2,-1,0,1,2, …..(years to add or subtract)
echo date('Y-m-28', mktime(0, 0, 0, date('m')+$months, 1, date('Y') + $years));
?>
$uj@y

Ähnliche Antworten wie “PHP -Datum heute plus 1 Monat”

Fragen ähnlich wie “PHP -Datum heute plus 1 Monat”

Weitere verwandte Antworten zu “PHP -Datum heute plus 1 Monat” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen