xxxxxxxxxx
$sql_date_YYYY-MM-DD = '2024-09-03';
echo $mynewdate = date('d-m-Y, strtotime($sql_date_YYYY-MM-DD); // 03-09-2024
xxxxxxxxxx
$date = "2022-05-15"; // Example date
$formattedDate = date("d/m/Y", strtotime($date));
echo $formattedDate; // Output: 15/05/2022
xxxxxxxxxx
$date = DateTime::createFromFormat('d/m/Y', "24/04/2012");
echo $date->format('Y-m-d');
xxxxxxxxxx
$var = '20/04/2012';
$date = str_replace('/', '-', $var);
echo date('Y-m-d', strtotime($date));
xxxxxxxxxx
<?php
// both lines output 813470400
echo strtotime("19951012"), "\n",
strtotime("12 October 1995");
// prints 1995 Oct 12
echo date("Y-m-d", strtotime("19951012"));
?>