$Sir NM2Date: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 30: Line 30:
<ul>
<ul>
<li><var calss="term">fmt</var> is not a valid datetime format.
<li><var calss="term">fmt</var> is not a valid datetime format.
<li><var class="term"datn</var> out of range.
<li><var class="term">datn</var> out of range.
</ul>
</ul>



Revision as of 21:19, 8 February 2012

Convert datetime number of milliseconds to string

Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is currently no OO equivalent for the $Sir_NM2Date function.

The $Sir_NM2Date function expects a numeric datetime argument containing a number of milliseconds since January 1, 1900, and a datetime format string. It returns the date represented by the first argument, in the format corresponding to the second argument. $Sir_NM2Date accepts an optional error control string and returns the null string if an error is detected.

Syntax

<section begin="syntax" /> %dat = $Sir_NM2Date(datn, fmt, errctl) <section end="syntax" />

Syntax terms

datn Datetime number containing a signed number of milliseconds since January 1, 1900.
fmt Datetime format string. Refer to "Datetime string formats" for an explanation of valid datetime formats and valid datetime values.
errctl Optional error control string; refer to "Datetime error handling".
%dat Set to the datetime value string, using format specified by fmt, corresponding to datn, unless an error is detected.

Usage notes