<?php
setlocale(LC_TIME, 'en_US.UTF-8'); // Ensure correct language format date_default_timezone_set('Asia/Kolkata'); // Set your timezone or you can remove this as well using here because of server time mismatch
$dateString = trim("Wednesday 15 January 2025, 02:11:05 PM"); $date = date_create_from_format("l d F Y, h:i:s A", $dateString);
echo "Formatted Date: " . date_format($date, "Y-m-d");
echo "<br>";
echo "Time: " . date_format($date, "h:i:s A");
echo "<br>";
echo "Day: " . date_format($date, "l");
echo "<br>";
echo "Date & Time : " . date_format($date, "Y-m-d h:i:s A");
echo "<br>";
echo "Date & Time & Day : " . date_format($date, "Y-m-d h:i:s A l");
?>