Answers for "php date format dd mm yyyy change from current timestamp"

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

Code answers related to "php date format dd mm yyyy change from current timestamp"

Browse Popular Code Answers by Language