PHP : co,nvert a int Month to french String


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // convert > mois numérique vers > mois texte
  2. function moisFr ($month){
  3. if (strlen($month) == 1) {
  4. $month = '0' . $month;
  5. }
  6. $liste_mois_fr = array("01" => "Janvier" , "02" => "Février" , "03" => "Mars" , "04" => "Avril" , "05" => "Mai" , "06" => "Juin" , "07" => "Juillet" , "08" => "Août" , "09" => "Septembre" , "10" => "Octobre" , "11" => "Novembre" , "12" => "Décembre");
  7. return $liste_mois_fr[$month];
  8. }

URL: http://www.giacomel.fr

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.