Gavrinis Open your mind | tu fais une requête sur la date US puis tu la remets toi même en français
Code :
- // Transforme la date SQL en date française.
- function sqlDateToOut($sqldate)
- {
- setlocale(LC_TIME, 'fr_FR', 'fra');
- $birthyear = substr($sqldate,0,4);
- $birthmonth = substr($sqldate,5,2);
- $birthday = substr($sqldate,8,2);
- $anyyear = 2000;
- $time = mktime(0,0,0,$birthmonth, $birthday, $anyyear);
- return strftime("%d ",$time) . strftime("%B ",$time) . $birthyear;
- }
|
|