Retrieves the date in localized format, based on a sum of Unix timestamp and timezone offset in seconds. If the locale specifies the locale month and weekday, then the locale will take over the format for the date. If it isn't, then the date format string will be used instead. Note that due to the way WP typically generates a sum of timestamp and offset with `strtotime()`, it implies offset added at a _current_ time, not at the time the timestamp represents. Storing such timestamps or calculating them differently will lead to invalid output.
$format, $timestamp_with_offset = false, $gmt = false
Sortie :
@param string $format Format to display the date. @param int|bool $timestamp_with_offset Optional. A sum of Unix timestamp and timezone offset @param bool $gmt Optional. Whether to use GMT timezone. Only applies @return string The date, translated if locale specifies it.
// Utilisation de la fonction date_i18n
$result = date_i18n($format, $timestamp_with_offset = false, $gmt = false);
if ($result) {
// Votre logique ici
}
Chargement des actualités...