[Windows + PHP5] Localizing date()?
- From: Gilles Ganault <nospam@xxxxxxxxxx>
- Date: Fri, 28 Dec 2007 04:10:57 +0100
Hello
I'm trying to localize a small PHP application which uses
date() to display a date saved as Epoch in MySQL, but I can't get the
month to be displayed in French:
=========
//BAD setlocale(LC_ALL, 'fr_FR@euro', 'fr_FR', 'fra_fra');
//BAD setlocale(LC_ALL, 'fra_fra');
//BAD setlocale(LC_ALL, 'french');
//BAD setlocale(LC_ALL, 'fr_FR');
//BAD setlocale(LC_ALL, 'fr-FR');
//BAD setlocale(LC_ALL, 'fr');
//BAD too
setlocale(LC_ALL, 'French');
//27 December 2007 instead of
//27 décembre 2007
echo date('d F Y', '1198790064');
=========
I read the comments in www.php.net/date , and was wondering...
1. Why PHP5 seems to have a problem with locales, and
2. What would be the least complicated way to change this call to
date()?
Thank you.
.
- Follow-Ups:
- Re: [Windows + PHP5] Localizing date()?
- From: Gilles Ganault
- Re: [Windows + PHP5] Localizing date()?
- Prev by Date: Re: Php installation (as RPM package)
- Next by Date: Re: Business contact manager for SOHO use?
- Previous by thread: Php installation (as RPM package)
- Next by thread: Re: [Windows + PHP5] Localizing date()?
- Index(es):
Relevant Pages
|