I have string:
\"Lundi, 08 Juillet 2013 09:09\"
How can I parse this type string?
I try:
$date = \'08 Juillet 2013 09:0
try this code, its important to first use setlocale
setlocale
$date = '08 Juillet 2013 09:09'; setlocale(LC_TIME, 'fr-FR'); $time = strptime($date, "%d %B %G %H:%M"); print_r($time);