[Smarty] Date en anglais .
Bonjour , j'ai le même problème que certains, la date ne veut pas être écrite en Français.
J'ai trouvé ceci qui fonctionnais en local mais pas sur le serveur distant.
http://www.developpez.net/forums/d59...date-francais/
Mon site : http://perso.robot-amateur.com/index.php?match=1
Le code au début : index.php
Code:
1 2 3 4 5 6 7 8
|
//passe le serveur en français
$language_code = 'fr_FR';
setlocale (LC_ALL, $language_code);
setlocale(LC_TIME, $language_code);
setlocale (LC_TIME, 'fr_FR','fra');
... |
L'appel a la fonction :
Code:
{{$match->voir_match($id_match,"date")|date_format:"%A %d %B %Y"|utf8_encode}|capitalize}
Merci d'avance pour votre aide .
Paterson