$today=date("F j, Y, g:i a");// March 10, 2001, 5:16 pm$today=date("m.d.y");// 03.10.01$today=date("j, n, Y");// 10, 3, 2001$today=date("Ymd");// 20010310$today=date('h-i-s, j-m-y, it is w Day');// 05-16-18, 10-03-01, 1631 1618 6 Satpm01$today=date('i is he jS day.');// It is the 10th day (10ème jour du mois).$today=date("D M j G:i:s T Y");// Sat Mar 10 17:16:18 MST 2001$today=date('H:m:s m es le mois');// 17:03:18 m est le mois$today=date("H:i:s");// 17:16:18$today=date("Y-m-d H:i:s");// 2001-03-10 17:16:18 (le format DATETIME de MySQL)
FYI: there's a list of constants with predefined formats on the DateTime object, for example instead of outputting ISO 8601 dates with:
<?phpechodate('c');?>
or
<?phpechodate('Y-m-dTH:i:sO');?>
You can use
<?phpechodate(DateTime::ISO8601);?>
instead, which is much easier to read.
$today=date("F j, Y, g:i a");// March 10, 2001, 5:16 pm$today=date("m.d.y");// 03.10.01$today=date("j, n, Y");// 10, 3, 2001$today=date("Ymd");// 20010310$today=date('h-i-s, j-m-y, it is w Day');// 05-16-18, 10-03-01, 1631 1618 6 Satpm01$today=date('i is he jS day.');// It is the 10th day (10ème jour du mois).$today=date("D M j G:i:s T Y");// Sat Mar 10 17:16:18 MST 2001$today=date('H:m:s m es le mois');// 17:03:18 m est le mois$today=date("H:i:s");// 17:16:18$today=date("Y-m-d H:i:s");
<?php// set the default timezone to use. Available since PHP 5.1date_default_timezone_set('UTC');// Prints something like: Mondayechodate("l");// Prints something like: Monday 8th of August 2005 03:12:46 PMechodate('l jS of F Y h:i:s A');// Prints: July 1, 2000 is on a Saturdayecho"July 1, 2000 is on a ".date("l",mktime(0,0,0,7,1,2000));/* use the constants in the format parameter */// prints something like: Wed, 25 Sep 2013 15:28:57 -0700echodate(DATE_RFC2822);// prints something like: 2000-07-01T00:00:00+00:00echodate(DATE_ATOM,mktime(0,0,0,7,1,2000));?>
date("d");//Day of month: 09date("j");//Day of month without 0: 9date("jS")://Day of month with "th": 21thdate("D")://Day of week abbreviated: Thudate("l")://Day of week: Thursdaydate("z");//Day of the year: 110date("t");//Number of days in given month: 30date("m");//Month number: 04date("n");//Month number without 0: 4date("M");//Month name abbreviated: Aprdate("F");//Month name: Aprildate("Y");//Year: 2022date("y");//Last 2 digits of year: 22date("o");//ISO Year number: 2022date("h");//Hour (12 fomrat): 02date("H");//Hour (24 fomrat): 14date("g");//Hour without 0 (12 fomrat): 2date("G");//Hour without 0 (24 fomrat): 14date("i");//Minutes: 29date("s");//Seconds: 24date("u");//Microseconds: 33date("a");//am or pmdate("A");//AM or PMdate("e");//Timezone identifier: UTC
<?php// set the default timezone to use. Available since PHP 5.1date_default_timezone_set('UTC');// Prints something like: Mondayechodate("l");// Prints something like: Monday 8th of August 2005 03:12:46 PMechodate('l jS of F Y h:i:s A');// Prints: July 1, 2000 is on a Saturdayecho"July 1, 2000 is on a ".date("l",mktime(0,0,0,7,1,2000));/* use the constants in the format parameter */// prints something like: Wed, 25 Sep 2013 15:28:57 -0700echodate(DATE_RFC2822);// prints something like: 2000-07-01T00:00:00+00:00echodate(DATE_ATOM,mktime(0,0,0,7,1,2000));?>
date_default_timezone_set('UTC');// set timezone$timestamp=time();// get current epoch time$format="Y-m-d h:i:sa";// format for date output$formatted_date=date($format,$timestamp));// convert timestamp to formatecho($formatted_date);
<?php// set the default timezone to use.date_default_timezone_set('UTC');// Prints something like: Mondayechodate("l");// Prints something like: Monday 8th of August 2005 03:12:46 PMechodate('l jS of F Y h:i:s A');// Prints: July 1, 2000 is on a Saturdayecho"July 1, 2000 is on a ".date("l",mktime(0,0,0,7,1,2000));/* use the constants in the format parameter */// prints something like: Wed, 25 Sep 2013 15:28:57 -0700echodate(DATE_RFC2822);// prints something like: 2000-07-01T00:00:00+00:00echodate(DATE_ATOM,mktime(0,0,0,7,1,2000));?>
<?php// Prints the day, date, month, year, time, AM or PM$dollar=date("l jS of F Y")."<br>";echo$dollar;// Result Example :- Wednesday 18th of August 2021?>
<?php// prints something like: Wednesday the 15thechodate('l he jS');?>
gmdate() - Format a GMT/UTC date/time
idate() - Format a local time/date as integer
getdate() - Get date/time information
getlastmod() - Gets time of last page modification
mktime() - Get Unix timestamp for a date
strftime() - Format a local time/date according to locale settings
time() - Return current Unix timestamp
DateTimeImmutable::__construct() - Returns new DateTimeImmutable object
Predefined DateTime Constants