Strftime: Difference between revisions

20 bytes removed ,  3 July 2022
no edit summary
(Created page with "{{Template:ACSWarning}} {{devfeature|3.0|150831-1814}} str '''Strftime'''(int timestamp, str format['', int utc'']) __NOTOC__ == Usage == === Parameters === * ''timestamp'':...")
 
No edit summary
Tag: Source edit
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Template:ACSWarning}}
{{Template:ACSWarning}}
{{devfeature|3.0|150831-1814}}


str '''Strftime'''(int timestamp, str format['', int utc''])
str '''Strftime''' (int timestamp, str format['', int utc''])
__NOTOC__
 
== Usage ==
== Usage ==
=== Parameters ===
=== Parameters ===
Line 11: Line 10:


=== Return value ===
=== Return value ===
A human-readable string from the given timestamp, formatted using the format parameter.
A human-readable string from the given timestamp, formatted using the ''format'' parameter.


Note that due to ACS's limitations, timestamps are suspectible to the [http://en.wikipedia.org/wiki/Year_2038_problem year 2038 problem].
Note that due to ACS's limitations, timestamps are suspectible to the [[wikipedia:Year 2038 problem|year 2038 problem]].


== Example ==
== Examples ==
This prints something like <code>{{CURRENTMONTHNAME}} {{CURRENTDAY}} {{CURRENTYEAR}}</code> to the screen.
This prints something like <code>{{CURRENTMONTHNAME}} {{CURRENTDAY}} {{CURRENTYEAR}}</code> to the screen.


Line 25: Line 24:
</syntaxhighlight>
</syntaxhighlight>


== See Also ==
== See also ==
*[[SystemTime]]
* [[SystemTime]]
*[[GetTimeProperty]]
* [[GetTimeProperty]]
 
[[Category: ACS functions]]