date en fran c3 a7ais php

Solutions on MaxInterview for date en fran c3 a7ais php by the best coders in the world

showing results for - "date en fran c3 a7ais php"
Amelie
10 Sep 2018
1<?php
2// setlocale(LC_TIME, 'fr_FR.UTF8');
3// setlocale(LC_TIME, 'fr_FR');
4// setlocale(LC_TIME, 'fr');
5setlocale(LC_TIME, 'fra_fra');
6 
7echo strftime('%Y-%m-%d %H:%M:%S');  // 2012-10-11 16:03:04
8echo strftime('%A %d %B %Y, %H:%M'); // jeudi 11 octobre 2012, 16:03
9echo strftime('%d %B %Y');           // 11 octobre 2012
10echo strftime('%d/%m/%y');           // 11/10/12
11?>
12