CodeNovice
0
Q:

php date format dd/mm/yyyy

date("d/m/Y", strtotime($str));
1
$date = DateTime::createFromFormat('d/m/Y', "24/04/2012");
echo $date->format('Y-m-d');
1
$var = '20/04/2012';
$date = str_replace('/', '-', $var);
echo date('Y-m-d', strtotime($date));
-2

New to Communities?

Join the community