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 — Liefert die Zeitzone relativ zur angegebenen DateTime
Objektorientierter Stil
Prozeduraler Stil
Gibt die Zeitzone relativ zur angegebenen DateTime zurück.
object
Nur bei prozeduralem Aufruf: Ein von date_create() zurückgegebenes DateTime-Objekt.
Gibt bei Erfolg ein DateTimeZone-Objekt zurück.
Bei einem Fehler wird false
zurückgegeben.
Beispiel #1 DateTime::getTimezone()-Beispiel
Objektorientierter Stil
<?php
$date = new DateTimeImmutable(null, new DateTimeZone('Europe/London'));
$tz = $date->getTimezone();
echo $tz->getName();
?>
Prozeduraler Stil
<?php
$date = date_create(null, timezone_open('Europe/London'));
$tz = date_timezone_get($date);
echo timezone_name_get($tz);
?>
Die obigen Bespiele erzeugen folgende Ausgabe:
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.