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 — Retourne le fuseau horaire relatif au DateTime fourni
Style orienté objet
Style procédural
Retourne le fuseau horaire relatif au DateTime fourni.
object
Seulement en style procédural : un objet DateTime retourné par date_create()
Retourne un objet DateTimeZone en cas de succès
ou false
si une erreur survient.
Exemple #1 Exemple avec DateTime::getTimezone()
Style orienté objet
<?php
$date = new DateTimeImmutable(null, new DateTimeZone('Europe/London'));
$tz = $date->getTimezone();
echo $tz->getName();
?>
Style procédural
<?php
$date = date_create(null, timezone_open('Europe/London'));
$tz = date_timezone_get($date);
echo timezone_name_get($tz);
?>
Les exemples ci-dessus vont afficher :
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.