Quick Example
The screenshot above shows F j, Y \a\t H:i:s which will output something like September 30, 2022 at 14:31:59.
The F j, Y and H:i:s are PHP parameters for date and time, where for example, F is for a full, textual reprentation of a month, September, and H is for showing the hour with leading zero in a 24-hour format, 14 in the above example.
The \a\t part is to output the at text, and use a backslash to make sure each character, a and t, is being output as is and not interpreted as a PHP date time parameter.
The \a\t part is to output the at text, and use a backslash to make sure each character, a and t, is being output as is and not interpreted as a PHP date time parameter.
Available Parameters
You can use the PHP date time parameters listed in details and with examples at:
https://www.php.net/manual/en/datetime.format.php#refsect1-datetime.format-parameters
https://www.php.net/manual/en/datetime.format.php#refsect1-datetime.format-parameters