Now
From SDU
To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.
To discuss or ask questions about this article, select the discussion tab above.
Overview
Return current date and time in Unix datetime format.
Usage
<source lang="javascript"> int now() </source>
Results
Current date and time in Unix datetime format.
Examples
<source lang="javascript"> chg.modified_date = now(); alg.time_spent = now() - time_stamp;
if (now() > need_by) { set_return_data(TRUE); } else { set_return_data(FALSE); } </source>