DateTime::setTimestamp

date_timestamp_set

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

DateTime::setTimestamp -- date_timestamp_setSets the date and time based on an Unix timestamp

Опис

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

public DateTime::setTimestamp(int $timestamp): DateTime

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

date_timestamp_set(DateTime $object, int $timestamp): DateTime

Sets the date and time based on an Unix timestamp.

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

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

Параметри

object

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

timestamp

Unix timestamp representing the date. Setting timestamps outside the range of int is possible by using DateTimeImmutable::modify() with the @ format.

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

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

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

add a note

User Contributed Notes

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