099 - Date_create & Date_format , use for future time, past also worksWednesday
15/03/2023 22:25:00
<?php
// 099 - Date_create & Date_format , use for future time, past also works
echo "</br><span class='myheading'>099 - Date_create & Date_format , use for future time, past also works</span></br>";
$date = date_create("2023-03-15 22:25:00",timezone_open("Asia/Kolkata")); /*------Date Create Function------- */
echo date_format($date,"l"). '<br><br>'; /*------Date Format Function------- */
echo date_format($date,"d/m/Y H:i:s"). '<br><br>';
?>