LsWeek()
Returns the week number in the year of the date referenced, based on the local influence.
Not everywhere does the week begin on Monday by definition.
LsWeek( date=datetime, locale=locale, timezone=timezone );
Returns: Number
Argument | Description |
---|---|
date
datetime,
required
|
date object; for example, now() |
locale
locale,
optional
|
Locale to use instead of the locale of the page when processing the function |
timezone
timezone,
optional
|
A datetime object is independent of a specific timezone; it is only an offset in milliseconds from The timezone only comes into play when you need specific information like hours in a day, minutes in a hour or which day it is as these calculations depend on the timezone. A timezone must be specified in order to translate the date object to something else. If you do not provide the timezone in the function call, it will default to the timezone specified in the Lucee Administrator (Settings/Regional), or the timezone specified for the current request using the function setTimezone(). You can find a list of all available timezones in the Lucee administrator (Settings/Regional). Some examples of valid timezones include:
|
Examples
Dump(lsweek("{ts '2020-12-27 0:0:0'}",'#getLocale()#','CET'));
Dump(lsweek("{ts '2020-12-27 0:0:0'}",'#getLocale()#'));
<span class="nv">date</span> <span class="o">=</span> <span class="nf">createDateTime</span><span class="p">(</span><span class="m">2022</span><span class="p">,</span><span class="m">01</span><span class="p">,</span><span class="m">17</span><span class="p">,</span><span class="m">12</span><span class="p">,</span><span class="m">0</span><span class="p">,</span><span class="m">0</span><span class="p">,</span><span class="m">0</span><span class="p">,</span><span class="s2">"UTC"</span><span class="p">);</span>
<span class="c">// in CH Monday is the first day of the week</span>
<span class="nf">Dump</span><span class="p">(</span><span class="nf">lsWeek</span><span class="p">(</span><span class="nv">date</span><span class="p">,</span> <span class="s2">"DE_CH"</span><span class="p">,</span> <span class="s2">"Europe/Zurich"</span><span class="p">));</span>
<span class="c">// in Bagdad Monday is the third day of the week</span>
<span class="nf">Dump</span><span class="p">(</span><span class="nf">lsWeek</span><span class="p">(</span><span class="nv">date</span><span class="p">,</span> <span class="s2">"ar_IQ"</span><span class="p">,</span> <span class="s2">"Asia/Baghdad"</span><span class="p">));</span>
<span class="c">// in the US Monday is the second day of the week</span>
<span class="nf">Dump</span><span class="p">(</span><span class="nf">lsWeek</span><span class="p">(</span><span class="nv">date</span><span class="p">,</span> <span class="s2">"EN_US"</span><span class="p">,</span> <span class="s2">"America/Los_Angeles"</span><span class="p">));</span>
See also
- Date and time
- Internationalization
- Week()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)