Dutch PHP Conference 2025 - Call For Papers

DateTime::sub

date_sub

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

DateTime::sub -- date_sub Subtracts an amount of days, months, years, hours, minutes and seconds from a DateTime object

Опис

Об'єктно-орієнтований стиль

public DateTime::sub(DateInterval $interval): DateTime

Процедурний стиль

date_sub(DateTime $object, DateInterval $interval): DateTime

Modifies the specified DateTime object, by subtracting the specified DateInterval object.

Like DateTimeImmutable::sub() but works with DateTime.

The procedural version takes the DateTime object as its first argument.

Параметри

object

Тільки процедурний стиль: об'єкт DateTime повертається функцією date_create(). Вона змінює цей об'єкт.

interval

A DateInterval object

Значення, що повертаються

Повертає змінений об'єкт DateTime для ланцюжків методів.

Помилки/виключення

Object Orientated API only: If an unsupported operation is attempted, such as using a DateInterval object representing relative time specifications such as next weekday, a DateInvalidOperationException is thrown.

Журнал змін

Версія Опис
8.3.0 Now throws a DateInvalidOperationException with DateTime::sub(), instead of a warning when an unsupported operation is attempted. date_sub() has not been changed.

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top