79404968

Date: 2025-02-01 12:25:37
Score: 0.5
Natty:
Report link
<?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");

?>

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ajay