pike.git
/
src
/
builtin.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/builtin.cmod:209:
*! *! %B The full month name according to the current locale. *! *! %c The preferred date and time representation for the current locale. *! *! %C The century number (year/100) as a 2-digit integer. *! *! %d The day of the month as a decimal number (range 01 to 31). *! *! %D Equivalent to %m/%d/%y. (for Americans only. Americans should note that in other countries %d/%m/%y is rather common. This means that in international context this format is ambiguous and should not be used.)
-
+
*!
*! %e Like %d, the day of the month as a decimal number, but a leading zero is replaced by a space. *! *! %E Modifier: use alternative format, see below. *! *! %F Equivalent to %Y-%m-%d (the ISO 8601 date format). (C99) *! *! %G The ISO 8601 week-based year (see NOTES) with century as a decimal number. The 4-digit year corresponding to the ISO week number (see %V). This has the same format and value as %Y, except that if the ISO week number belongs to the previous or next year, that year is used instead. *! *! %g Like %G, but without century, that is, with a 2-digit year (00-99). (TZ) *!