⇤ ← Revision 1 as of 2013-10-21 07:16:25
Size: 835
Comment:
|
Size: 926
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 4: | Line 4: |
returns string | returns string - timestamp is an optional parameter. if timestamp is omitted, current timestamp is used. |
Line 7: | Line 7: |
'''date()''' returns current time/date in human readable formatted string: |
'''date()''' returns current time/date in human readable formatted string: |
Line 32: | Line 31: |
Function
date([timestamp])
returns string - timestamp is an optional parameter. if timestamp is omitted, current timestamp is used.
examples
date() returns current time/date in human readable formatted string:
Mon Oct 21 02:10:26 GMT-0500 2013
date(timestamp)
returns time/date in human readable formatted string for specified timestamp
related functions
date().getTime()
returns current timestamp (integer number).
date(timestamp).getHours()
returns hour (integer number) for specified timestamp (or current time if timestamp is omitted).
date(timestamp).getMinutes()
returns minutes (integer number) for specified timestamp (or current time if timestamp is omitted).
date(timestamp).getSeconds()
returns seconds (integer number) for specified timestamp (or current time if timestamp is omitted).