(PHP 5 >= 5.2.0, PHP 7, PHP 8)
DateTimeZone::getTransitions -- timezone_transitions_get — Retourne toutes les transitions d'un fuseau horaire
Style orienté objet
$timestampBegin
= PHP_INT_MIN
, int $timestampEnd
= PHP_INT_MAX
) : array|falseStyle procédural
$object
, int $timestampBegin
= PHP_INT_MIN
, int $timestampEnd
= PHP_INT_MAX
) : array|false
object
Seulement en style procédural : un DateTimeZone objet retourné par timezone_open()
timestampBegin
Début du timestamp.
timestampEnd
Fin du timestamp.
Retourne un tableau indexé numériquement des tableaux
de transition en cas de succès, ou false
si une erreur survient.
Clé | Type | Description |
---|---|---|
ts |
int | timestamp Unix |
time |
string | Chaîne de temps DateTimeInterface::ISO8601 |
offset |
int | Décalage horaire vers UTC en secondes |
isdst |
bool | Si l'heure d'été ext activée |
abbr |
string | Abréviation du fuseau horaire |
Exemple #1 Exemple avec timezone_transitions_get()
<?php
$timezone = new DateTimeZone("Europe/London");
$transitions = $timezone->getTransitions();
print_r(array_slice($transitions, 0, 3));
?>
Résultat de l'exemple ci-dessus est similaire à :
Array ( [0] => Array ( [ts] => -9223372036854775808 [time] => -292277022657-01-27T08:29:52+0000 [offset] => 3600 [isdst] => 1 [abbr] => BST ) [1] => Array ( [ts] => -1691964000 [time] => 1916-05-21T02:00:00+0000 [offset] => 3600 [isdst] => 1 [abbr] => BST ) [2] => Array ( [ts] => -1680472800 [time] => 1916-10-01T02:00:00+0000 [offset] => 0 [isdst] => [abbr] => GMT ) )