Returns a string presentation of the specified date object.
Syntax
ctime( date )
date.ctime( )
Parameters
Returns
string
|
the string representation of the specified date object in yyy-mm-dd format.
|
Example
iDate = Date( )
sDate = ctime( iDate )
sDate = iDate.ctime( )
|