User Tools

Site Tools


admin:dateformatting

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

admin:dateformatting [2011/06/03 10:05] – created jwarrioradmin:dateformatting [2011/06/03 10:05] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Date Formatting ======
  
 +LCTime>>dFmt
 +
 + "Answers a string containing the standard date format.  
 + It may contain any combination of characters and field
 + descriptors. The date format is composed of characters
 + and the following field definitions from the POSIX CTIME()
 + definition.
 +
 + Identifier Meaning
 +
 + %b -> Month, using locale's abbreviated month names
 + %B -> Month, using locale's full month names
 + %m -> Month number (01-12)
 + %z -> Month number (1-12) no leading zeros
 +
 + %d -> Day of month (01-31)
 + %e -> Day of month (1-31, single digits preceded by a space)
 + %f -> Day of month (1-31) no leading zeros
 +
 + %w -> Day of week, Sunday is day 0
 + %A -> Day of week, using locale's weekday names
 + %a -> Day of week, using locale's abbreviated weekday names
 +
 + %y -> Year within century (00-99)
 + %Y -> Year including century (eg: 1993)
 +"