ctod( ) Function
Description:
| |
The ctod() function converts the string date cDate to
it's equivalent numeric Julian date. |
|
Syntax:
Parameters:
| |
string: cDate |
A date in the format "MM/DD/YY" or "MM/DD/YYYY". |
| |
numeric: retval |
The Julian date for the date cDate. |
Platforms:
| |
Windows, DOS, Internet Active Pages |
Example:
local retval
retval = ctod( date() ) // Returns the current julian date
println( retval )
|
|