(PHP 5 >= 5.2.0, PHP 7)
DateTime::modify -- date_modify — Alters the timestamp
Stil obiect-orientat
Stil procedural
Alter the timestamp of a DateTime object by incrementing or decrementing in a format accepted by strtotime().
object
Doar stilul procedural: Un obiect DateTime întors de date_create(). Funcția modifică acest obiect.
modify
Un șir dată/oră. Formatele valide sunt explicate în Formatele datelor și orelor.
Întoarce obiectul
DateTime pentru
înlănțuirea metodelor sau FALSE
în cazul eșecului.
Versiune | Descriere |
---|---|
5.3.6 | Absolute date/time statements now take effect. Previously, only relative parts were used. |
5.3.0 | A fost schimbată valoarea întoarsă în caz de succes
din NULL în DateTime. |
Example #1 DateTime::modify() example
Stil obiect-orientat
<?php
$date = new DateTime('2006-12-12');
$date->modify('+1 day');
echo $date->format('Y-m-d');
?>
Stil procedural
<?php
$date = date_create('2006-12-12');
date_modify($date, '+1 day');
echo date_format($date, 'Y-m-d');
?>
Exemplele de mai sus vor afișa:
2006-12-13
Example #2 Beware when adding or subtracting months
<?php
$date = new DateTime('2000-12-31');
$date->modify('+1 month');
echo $date->format('Y-m-d') . "\n";
$date->modify('+1 month');
echo $date->format('Y-m-d') . "\n";
?>
Exemplul de mai sus va afișa:
2001-01-31 2001-03-03