Answers for "change date format from dd/mm/yyyy to yyyy-mm-dd in php"

PHP
3

php date format dd/mm/yyyy

date("d/m/Y", strtotime($str));
Posted by: Guest on November-01-2020
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
-1

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));
Posted by: Guest on March-05-2021
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

Code answers related to "change date format from dd/mm/yyyy to yyyy-mm-dd in php"

Browse Popular Code Answers by Language