tryphp_func_gmdate.php:
"; // Prints the day, date, month, year, time, AM or PM echo gmdate("l jS \of F Y h:i:s A") . "
"; // Prints October 3, 1975 was on a Thursday echo "Oct 3, 1975 was on a ".gmdate("l", mktime(0,0,0,10,3,1975)) . "
"; // Use a constant in the format parameter echo gmdate(DATE_RFC822) . "
"; // prints something like: 1975-10-03T00:00:00+00:00 echo gmdate(DATE_ATOM,mktime(0,0,0,10,3,1975)); ?>
Saturday
Saturday 7th of October 2023 01:28:43 PM
Oct 3, 1975 was on a Friday
Sat, 07 Oct 23 13:28:43 +0000
1975-10-03T00:00:00+00:00