the getTimestamp() function and the format("U") function for get the timestamp from a DateTime object, first convert the object in UTC TimeZone, and then give the timestamp int.
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
DateTimeInterface::getTimezone -- DateTimeImmutable::getTimezone -- DateTime::getTimezone -- date_timezone_get — Return time zone relative to given DateTime
Nesne yönelimli kullanım
Yordamsal kullanım
Return time zone relative to given DateTime.
nesne
Sadece yordamsal biçem: date_create() işlevinden dönen bir DateTime nesnesi.
Returns a DateTimeZone object on success
başarısızlık durumunda false
döner.
Örnek 1 DateTime::getTimezone() example
Nesne yönelimli kullanım
<?php
$date = new DateTimeImmutable(null, new DateTimeZone('Europe/London'));
$tz = $date->getTimezone();
echo $tz->getName();
?>
Yordamsal kullanım
<?php
$date = date_create(null, timezone_open('Europe/London'));
$tz = date_timezone_get($date);
echo timezone_name_get($tz);
?>
Yukarıdaki örneklerin çıktısı:
Europe/London
the getTimestamp() function and the format("U") function for get the timestamp from a DateTime object, first convert the object in UTC TimeZone, and then give the timestamp int.