(PHP 5 >= 5.2.0)
DateTime::modify — Alters the timestamp
Alter the timestamp of a DateTime object by incrementing or decrementing in a format accepted by strtotime().
Nur bei prozeduralem Aufruf: Ein von date_create() zurückgegebens DateTime Objekt.
String in a relative format accepted by strtotime().
Returns the modified DateTime.
Beispiel #1 A date_modify() example
<?php
$date = new DateTime("2006-12-12");
$date->modify("+1 day");
echo $date->format("Y-m-d");
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
2006-12-13