strtotime() doesn't work with dd/mm/YYYY format!
- by Syom
I really like the strtotime() function, but the user manual doesn't give a complete description of the supported date formats. strtotime('dd/mm/YYYY') doesn't work, it works only with mm/dd/YYYY format.
if i have date in dd/mm/YYYY format, ho can i convert it to YYYY-mm-dd?
i can do it by using explode() function, but i think tere are better solution.
Thanks