Answers for "php convert m/d/y to yyyy-mm-dd"

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

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

yyyymmdd to yyyy-mm-dd php

<?php
// both lines output 813470400
echo strtotime("19951012"), "\n",
     strtotime("12 October 1995");

// prints 1995 Oct 12
echo date("Y-m-d", strtotime("19951012"));
?>
Posted by: Guest on November-04-2020

Code answers related to "php convert m/d/y to yyyy-mm-dd"

Browse Popular Code Answers by Language