I want to print the date in french like:
le 25 février 2014
This is my PHP code I used but it\'s not working.
setlocale(LC_
This works (tested)
Which will print:
Current Date: Wed 29 Jan 2014 Date in French => Mercredi 29 Janvier 2014
You just need to tweak it to format it the way you would like it to be.
"; echo "Date in French => ".date_in_french($currentDate);