Answers for "php convert date to ymd"

PHP
2

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');
Posted by: Guest on September-14-2020
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