PHP date() in foreign languages – e.g. Mar 25 Aoû 09 [duplicate]

I think you can’t get away from doing so without setting LOCALE:

<?php
setlocale(LC_ALL, 'fr_FR');

echo strftime("%A %e %B %Y");
?> 

Some details on strftime:
http://us2.php.net/manual/en/function.strftime.php

Leave a Comment