yyyy-mm-dd to dd-mm-yyyy in php code example
Example 1: php convert date from dd/mm/yyyy to yyyy-mm-dd
$date = DateTime::createFromFormat('d/m/Y', "24/04/2012");
echo $date->format('Y-m-d');
Example 2: yyyymmdd to yyyy-mm-dd php
<?php
echo strtotime("19951012"), "\n",
strtotime("12 October 1995");
echo date("Y-m-d", strtotime("19951012"));
?>
Example 3: convert dd/mm/yyyy to yyyy-mm-dd in mysql php
$var = '20/04/2012';
$date = str_replace('/', '-', $var);
echo date('Y-m-d', strtotime($date));
Example 4: php change date format from d/m/y to y-m-d
$var = '20/04/2012';
$date = str_replace('/', '-', $var);
echo date('Y-m-d', strtotime($date));