DateTimeInterface::getTimezone

DateTimeImmutable::getTimezone

DateTime::getTimezone

date_timezone_get

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

DateTimeInterface::getTimezone -- DateTimeImmutable::getTimezone -- DateTime::getTimezone -- date_timezone_getReturn time zone relative to given DateTime

Опис

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

public DateTimeInterface::getTimezone(): DateTimeZone|false
public DateTimeImmutable::getTimezone(): DateTimeZone|false
public DateTime::getTimezone(): DateTimeZone|false

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

Return time zone relative to given DateTime.

Параметри

object

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

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

Returns a DateTimeZone object on success або false в разі помилки.

Приклади

Приклад #1 DateTime::getTimezone() example

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

<?php
$date
= new DateTimeImmutable(null, new DateTimeZone('Europe/London'));
$tz = $date->getTimezone();
echo
$tz->getName();
?>

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

<?php
$date
= date_create(null, timezone_open('Europe/London'));
$tz = date_timezone_get($date);
echo
timezone_name_get($tz);
?>

Подані вище приклади виведуть:

Europe/London

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

add a note

User Contributed Notes

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