Datumformat i PHP

date( $format, $timestamp )

$format string Required

$timestamp int Optional

Return string

Exempel

date( ”Y-m-d H:i:s” )2025-06-25 20:39:42
date( ”l j F, Y” )onsdag 25 juni, 2025

Day
dDay of the month, 2 digits with leading zeros01 to 31
DA textual representation of a day, three lettersMon through Sun
jDay of the month without leading zeros1 to 31
l (lowercase ’L’)A full textual representation of the day of the weekSunday through Saturday
NISO 8601 numeric representation of the day of the week1 (for Monday) through 7 (for Sunday)
wNumeric representation of the day of the week0 (for Sunday) through 6 (for Saturday)
zThe day of the year (starting from 0)0 through 365
Week
WISO 8601 week number of year, weeks starting on MondayExample: 42 (the 42nd week in the year)
Month
FA full textual representation of a month, such as January or MarchJanuary through December
mNumeric representation of a month, with leading zeros01 through 12
MA short textual representation of a month, three lettersJan through Dec
nNumeric representation of a month, without leading zeros1 through 12
tNumber of days in the given month28 through 31
Year
YA full numeric representation of a year, at least 4 digits, with - for years BCE.Examples: -005507871999200310191
yA two digit representation of a yearExamples: 99 or 03
Time
aLowercase Ante meridiem and Post meridiemam or pm
AUppercase Ante meridiem and Post meridiemAM or PM
g12-hour format of an hour without leading zeros1 through 12
G24-hour format of an hour without leading zeros0 through 23
h12-hour format of an hour with leading zeros01 through 12
H24-hour format of an hour with leading zeros00 through 23
iMinutes with leading zeros00 to 59
sSeconds with leading zeros00 through 59
Full Date/Time
cISO 8601 date2004-02-12T15:19:21+00:00
r» RFC 2822/» RFC 5322 formatted dateExample: Thu, 21 Dec 2000 16:01:07 +0200

Innehållet kommer från PHP.net och finns i fullversion här:
https://www.php.net/manual/en/datetime.format.php