Answers for "convert date d/m/y to y-m-d php"

PHP
0

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));
Posted by: Guest on February-27-2020

Browse Popular Code Answers by Language