Jump to content

Strftime: Difference between revisions

no edit summary
No edit summary
No edit summary
Tag: Source edit
 
Line 1: Line 1:
{{Template:ACSWarning}}
{{Template:ACSWarning}}


str '''Strftime'''(int timestamp, str format['', int utc''])
str '''Strftime''' (int timestamp, str format['', int utc''])
__NOTOC__
 
== Usage ==
== Usage ==
=== Parameters ===
=== Parameters ===
Line 10: 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 24: Line 24:
</syntaxhighlight>
</syntaxhighlight>


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