Answers for "php format date string to yyyy-mm-dd"

PHP
3

php date format dd/mm/yyyy

date("d/m/Y", strtotime($str));
Posted by: Guest on November-01-2020
0

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
1

php validate date format yyyy-mm-dd

$date="2012-09-12";

if (preg_match("/^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/",$date)) {
    return true;
} else {
    return false;
}
Posted by: Guest on February-22-2021

Code answers related to "php format date string to yyyy-mm-dd"

Browse Popular Code Answers by Language