Date Members
  -  $qaDate['seconds'] = 57
-  $qaDate['minutes'] = 13
-  $qaDate['hours'] = 19
-  $qaDate['mday'] = 30
-  $qaDate['wday'] = 4
-  $qaDate['mon'] = 10
-  $qaDate['year'] = 2025
-  $qaDate['yday'] = 302
-  $qaDate['weekday'] = Thursday
-  $qaDate['month'] = October
-  $qaDate['0'] = 1761869637
Format Options
  -  date(a ) = pm - Lowercase am or pm
-  date(A ) = PM - Uppercase AM or PM
-  date(B ) = 051 - Swatch internet time (000 to 999)
-  date(c ) = 2025-10-30T19:13:57-05:00 - The ISO-8601 date (e.g. 2022-10-29T16:42:24-05:00)
-  date(d ) = 30 - The day of the month (01 to 31)
-  date(D ) = Thu - Thrree letter representation of the day of the week (e.g. Sat)
-  date(e ) = America/Chicago - The timezone identifier (e.g. America/Chicago)
-  date(F ) = October - The name of the month (e.g. October)
-  date(g ) = 7 - 12-hour format of an hour (1 to 12)
-  date(G ) = 19 - 24-hour format of an hour (0 to 23)
-  date(h ) = 07 - 12-hour format of an hour (01 to 12)
-  date(H ) = 19 - 24-hour format of an hour (00 to 23)
-  date(i ) = 13 - Minutes with leading zeros (00 to 59)
-  date(I ) = 1 - Daylights Savings Time (1 = Daylight Savings Time, 0 = Standard Time)
-  date(j ) = 30 - The day of the month without leading zeros (1 to 31)
-  date(l ) = Thursday - The name of the of a day of the week
-  date(L ) = 0 - Leap year (1 if it is a leap year, 0 otherwise)
-  date(m ) = 10 - Two digit month number with a leading zero (from 01 to 12)
-  date(M ) = Oct - Abbreviation of the month name (three letters)
-  date(n ) = 10 - A numeric representation of a month, without leading zeros (1 to 12)
-  date(N ) = 4 - The ISO-8601 numeric representation of a day (1 for Monday, 7 for Sunday)
-  date(o ) = 2025 - The ISO-8601 year number
-  date(O ) = -0500 - Difference to Greenwich time (GMT) in hours (Example: +0100)
-  date(p ) = -05:00 - Difference to Greenwich time (GMT) in hours:minutes (added in PHP 5.1.3)
-  date(P ) = -05:00 - Difference to Greenwich time (GMT) in hours:minutes (added in PHP 5.1.3)
-  date(o ) = 2025 - The ISO-8601 year number
-  date(O ) = -0500 - Difference to Greenwich time (GMT) in hours (Example: +0100)
-  date(r ) = Thu, 30 Oct 2025 19:13:57 -0500 - The RFC 2822 formatted date (e.g. Fri, 12 Apr 2013 12:01:05 +0200)
-  date(s ) = 57 - Seconds, with leading zeros (00 to 59)
-  date(S ) = th - The English ordinal suffix for the day of the month (2 characters st, nd, rd or th. Works well with j)
-  date(t ) = 31 - The number of days in the given month
-  date(T ) = CDT - Timezone abbreviations (Examples: EST, MDT)
-  date(u ) = 000000 - Microseconds (added in PHP 5.2.2)
-  date(U ) = 1761869637 - The seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)
-  date(v ) = 000 ???
-  date(w ) = 4 - A numeric representation of the day (0 for Sunday, 6 for Saturday)
-  date(W ) = 44 - The ISO-8601 week number of year (weeks starting on Monday)
-  date(y ) = 25 - A two digit representation of a year
-  date(Y ) = 2025 - A four digit representation of a year
-  date(z ) = 302 - The day of the year (from 0 through 365)
-  date(Z ) = -18000 - Timezone offset in seconds. The offset for timezones west of UTC is negative (-43200 to 50400)
Standard Formats
  -  date(DATE_ATOM) = 2025-10-30T19:13:57-05:00 - Atom
-  date(DATE_COOKIE) = Thursday, 30-Oct-2025 19:13:57 CDT - HTTP Cookies
-  date(DATE_ISO8601) = 2025-10-30T19:13:57-0500 - ISO-8601
-  date(DATE_RFC822) = Thu, 30 Oct 25 19:13:57 -0500 - RFC 822
-  date(DATE_RFC850) = Thursday, 30-Oct-25 19:13:57 CDT - RFC 850
-  date(DATE_RFC1036) = Thu, 30 Oct 25 19:13:57 -0500 - RFC 1036
-  date(DATE_RFC1123) = Thu, 30 Oct 2025 19:13:57 -0500 - RFC 1123
-  date(DATE_RFC2822) = Thu, 30 Oct 2025 19:13:57 -0500 - RFC 2822
-  date(DATE_RFC3339) = 2025-10-30T19:13:57-05:00 - Same as DATE_ATOM
-  date(DATE_RSS) = Thu, 30 Oct 2025 19:13:57 -0500 - RSS
-  date(DATE_W3C) = 2025-10-30T19:13:57-05:00 - World Wide Web Consortium
Example Format Usages
  -  date(l jS F Y g:i:s a ) = Thursday 30th October 2025 7:13:57 pm
-  Thursday the 30th of October 2025 at 7:13:57 pm
-  date(F jS, Y , mktime(0,0,0,12,25,1054)) = December 25th, 1054
-  date(DATE_ATOM, $qaDate[0]) = 2025-10-30T19:13:57-05:00