abonnel-siteweb/data/pages/informatique/langage/php/afficher-l-heure-en-francai...

21 lines
577 B
Plaintext
Raw Normal View History

2024-01-07 10:02:35 +01:00
====== Afficher l'heure en français ======
{{ :informatique:langage:php:php-lc_time-setlocale-strftime.png?nolink&75x75|PHP > Afficher l'heure en français}}
Cette fonction est OBSOLÈTE à partir de PHP 8.1.0. Il est fortement recommandé de les éviter.
<panel type="default" title="Code">
<code PHP [enable_line_numbers="true", start_line_numbers_at="1"]>
setlocale(LC_TIME, 'fr_FR');
echo strftime('%A %d %B %Y, %H:%M');
</code>
</panel>
<panel type="default" title="Résultat">
<PHP>
setlocale(LC_TIME, 'fr_FR');
echo strftime('%A %d %B %Y, %H:%M');
</PHP>
</panel>