21 lines
577 B
Plaintext
21 lines
577 B
Plaintext
|
====== 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>
|