xxxxxxxxxx
<?php
$date = DateTime::createFromFormat('Y-m-d', '2018-06-21');
echo $date->format('l'); # l for full week day name
?>
xxxxxxxxxx
<?php
//Create a date using data, e.g database column
$new_date = create_date('2023-09-27 12:04:00');
//Format the date as follows
$format = date_format($new_date,'l jS \of F Y h:i:s A');
//Expected Format is: Wednesday 27th of September 2023 12:04:00 PM
echo $format;
?>