The have the following lines (the months are in Russian):
"Ноябрь 20 2012"
"Декабрь 19 2012"
"Сентябрь 12 2012"
"Июнь 5 2012"
"Август 2 2012"
I want to convert them to the following format:
11.20.2012
12.19.2012
09.12.2012
06.05.2012
08.02.2012
The problem, of course, is that the month is in Russian, so what I've tried doesn't work.
$date = "Ноябрь 20 2012";
print_r(date_parse_from_format("F j Y", $date));
How can I parse dates with Russian months?