http 3a 2f 2fwww finalclap com 2ffaq 2f81 php afficher date heure francais

Solutions on MaxInterview for http 3a 2f 2fwww finalclap com 2ffaq 2f81 php afficher date heure francais by the best coders in the world

showing results for - "http 3a 2f 2fwww finalclap com 2ffaq 2f81 php afficher date heure francais"
Marlene
19 May 2017
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
Michela
01 Jan 2021
1<?php
2echo date('Y-m-d H:i:s');  // 2012-10-11 15:35:53
3echo date('l j F Y, H:i'); // Thursday 11 October 2012, 15:35
4echo date('d F Y');        // 11 October 2012
5echo date('d/m/Y');        // 11/10/12
6?>
7