(PHP 5 >= 5.3.0, PHP 7)
DateTime::sub -- date_sub — Subtracts an amount of days, months, years, hours, minutes and seconds from a DateTime object
Stil obiect-orientat
Stil procedural
Subtracts the specified DateInterval object from the specified DateTime object.
object
Doar stilul procedural: Un obiect DateTime întors de date_create(). Funcția modifică acest obiect.
interval
A DateInterval object
Întoarce obiectul
DateTime pentru
înlănțuirea metodelor sau FALSE
în cazul eșecului.
Example #1 DateTime::sub() example
Stil obiect-orientat
<?php
$date = new DateTime('2000-01-20');
$date->sub(new DateInterval('P10D'));
echo $date->format('Y-m-d') . "\n";
?>
Stil procedural
<?php
$date = date_create('2000-01-20');
date_sub($date, date_interval_create_from_date_string('10 days'));
echo date_format($date, 'Y-m-d');
?>
Exemplele de mai sus vor afișa:
2000-01-10
Example #2 Further DateTime::sub() examples
<?php
$date = new DateTime('2000-01-20');
$date->sub(new DateInterval('PT10H30S'));
echo $date->format('Y-m-d H:i:s') . "\n";
$date = new DateTime('2000-01-20');
$date->sub(new DateInterval('P7Y5M4DT4H3M2S'));
echo $date->format('Y-m-d H:i:s') . "\n";
?>
Exemplul de mai sus va afișa:
2000-01-19 13:59:30 1992-08-15 19:56:58
Example #3 Beware when subtracting months
<?php
$date = new DateTime('2001-04-30');
$interval = new DateInterval('P1M');
$date->sub($interval);
echo $date->format('Y-m-d') . "\n";
$date->sub($interval);
echo $date->format('Y-m-d') . "\n";
?>
Exemplul de mai sus va afișa:
2001-03-30 2001-03-02
DateTime::modify() is an alternative when using PHP 5.2.