$asctime » History » Version 9
  Per Amundsen, 11/06/2014 08:41 PM 
  
| 1 | 1 | Per Amundsen | _Added in 1.9.0_ | 
|---|---|---|---|
| 2 | |||
| 3 | *$asctime* | ||
| 4 | |||
| 5 | Returns current date and time. (Day Month Date XX:XX:XX Year format) | ||
| 6 | |||
| 7 | *$asctime(N,format)* | ||
| 8 | |||
| 9 | Returns the time and date in text format associated with the [[$ctime]] time value. | ||
| 10 | |||
| 11 | *Parameters* | ||
| 12 | |||
| 13 | N - A unix timestamp. | ||
| 14 | format - Date format to return. | ||
| 15 | |||
| 16 | *Example* | ||
| 17 | |||
| 18 | <pre> | ||
| 19 | ;Returns the default text format for this time value. | ||
| 20 | //echo -ag $asctime(793947600) | ||
| 21 | |||
| 22 | ;Returns the current time in hh:nn:ss format. | ||
| 23 | //echo -ag $asctime(hh:nn:ss) | ||
| 24 | |||
| 25 | ;Returns the date for this time value. | ||
| 26 | //echo -ag $asctime(793947600, dd/mm/yy) | ||
| 27 | </pre> | ||
| 28 | 2 | Per Amundsen | |
| 29 | *Format* | ||
| 30 | |||
| 31 | 8 | Per Amundsen | |^. Year | 
| 32 | 9 | Per Amundsen | |
| 33 | 2 | Per Amundsen | Month | 
| 34 | Day | ||
| 35 | Hours | ||
| 36 | Minutes | ||
| 37 | Seconds | ||
| 38 | AM/PM | ||
| 39 | Ordinal | ||
| 40 | Timezone | ||
| 41 | 3 | Per Amundsen | | yy | 
| 42 | yyyy | ||
| 43 | m | ||
| 44 | mm | ||
| 45 | mmm | ||
| 46 | mmmm | ||
| 47 | d | ||
| 48 | dd | ||
| 49 | ddd | ||
| 50 | dddd | ||
| 51 | h | ||
| 52 | hh | ||
| 53 | H | ||
| 54 | HH | ||
| 55 | n | ||
| 56 | nn | ||
| 57 | s | ||
| 58 | ss | ||
| 59 | t | ||
| 60 | tt | ||
| 61 | T | ||
| 62 | TT | ||
| 63 | 2 | Per Amundsen | | |