$Sir Date: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (link repair)
 
(31 intermediate revisions by 4 users not shown)
Line 2: Line 2:
<span class="pageSubtitle">Get current datetime</span>
<span class="pageSubtitle">Get current datetime</span>


<p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent of <var>$Sir_Date</var> is <var>[[CurrentTimeString (System function)|CurrentTimeString]]</var>.</p>
<p class="warn"><b>Note: </b>Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent of $Sir_Date is <var>[[CurrentTimeString (System function)|CurrentTimeString]]</var>.</p>


This function accepts an optional datetime format string and an optional error control string, and returns the current date and time as a character string with the specified format.
This function accepts an optional datetime format string and an optional error control string, and returns the current date and time as a character string with the specified format.


==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" /> %odate = $Sir_Date(fmt, errctl)
<p class="syntax"><span class="term">%odate</span> <span class="literal">= $Sir_Date(</span><span class="term">fmt</span><span class="literal">,</span> <span class="term">errctl</span><span class="literal">)</span>
<section end="syntax" /></p>
</p>


===Syntax terms===
===Syntax terms===


<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>fmt</th>
<td>Optional datetime format string, defaults to 'YY-MM-DD'. Refer to [[Datetime string formats|"Datetime string formats"]] for an explanation of valid datetime formats and valid datetime values.</td></tr>
<tr><th>errctl</th>
<td>Optional error control string; refer to [[Datetime string formats#Datetime Error Handling|"Datetime Error Handling"]].</td></tr>
<tr><th>%odate</th>
<tr><th>%odate</th>
<td>Set to contain the current date and time, in the format specified by <var class="term">fmt</var>.
<td>Set to contain the current date and time, in the format specified by <var class="term">fmt</var>.
</td></tr>
</td></tr>
<tr><th>fmt</th>
<td>Optional datetime format string, defaults to <var>YY-MM-DD</var>. Refer to [[Datetime string formats]] for an explanation of valid datetime formats and valid datetime values.</td></tr>
<tr><th>errctl</th>
<td>Optional error control string; refer to [[Datetime string formats#Datetime error handling|Datetime error handling]].</td></tr>
</table>
</table>


==Usage notes==
==Usage notes==
<ul>
<ul>
<li>$Sir_Date returns the null string in the following error case: <var class="term">fmt</var> is not a valid datetime format.
<li><var>$Sir_Date</var> returns the null string in the following error case: <var class="term">fmt</var> is not a valid datetime format.
For more information about error handling, see [[Datetime string formats#Datetime Error Handling|"Datetime Error Handling"]]).
For more information about error handling, see [[Datetime string formats#Datetime error handling|Datetime error handling]]).
</ul>
</ul>


Line 34: Line 36:
</p>
</p>


 
==Products authorizing {{PAGENAMEE}}==
<ul class="smallAndTightList">
<ul>
<li>[[Sirius functions]]</li>
<li>[[List of $functions|Sirius functions]]</li>
<li>[[Fast/Unload User Language Interface]]</li>
<li>[[Fast/Unload User Language Interface]]</li>
<li>[[Janus Open Client]]</li>
<li>[[Media:JoclrNew.pdf|Janus Open Client]]</li>
<li>[[Janus Open Server]]</li>
<li>[[Media:JosrvrNew.pdf|Janus Open Server]]</li>
<li>[[Janus Sockets]]</li>
<li>[[Janus Sockets]]</li>
<li>[[Janus Web Server]]</li>
<li>[[Janus Web Server]]</li>
<li>[[Japanese functions]]</li>
<li>Japanese functions</li>
<li>[[Sir2000 Field Migration Facility]]</li>
<li>[[Media:SirfieldNew.pdf|Sir2000 Field Migration Facility]]</li>
 
<li>[[Sir2000 User Language Tools]]
<li>''[[Sir2000 User Language Tools]]''
</ul>
</ul>
<p class="caption">Products authorizing $Sir_Date
</p>


[[Category:$Functions|$Sir_Date]]
[[Category:$Functions|$Sir_Date]]

Latest revision as of 22:47, 8 February 2018

Get current datetime

Note: Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent of $Sir_Date is CurrentTimeString.

This function accepts an optional datetime format string and an optional error control string, and returns the current date and time as a character string with the specified format.

Syntax

%odate = $Sir_Date(fmt, errctl)

Syntax terms

%odate Set to contain the current date and time, in the format specified by fmt.
fmt Optional datetime format string, defaults to YY-MM-DD. 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.

Usage notes

  • $Sir_Date returns the null string in the following error case: fmt is not a valid datetime format. For more information about error handling, see Datetime error handling).

Example

The following fragment prints a value such as Monday, 1 January 2001 AT 01:11:10 PM:

Print $Sir_Date('Wkday, DAY Month YYYY' WITH ' "A"T HH:MI:SS AM')

Products authorizing $Sir_Date