(PHP 5 >= 5.5.0, PHP 7, PHP 8, PECL >= 3.0.0a1)
IntlCalendar::setFirstDayOfWeek — Set the day on which the week is deemed to start
DescriptionObject-oriented style
public IntlCalendar::setFirstDayOfWeek(
int$dayOfWeek
):
true Return ValuesAlways returns true
.
true
now; previously, it was bool. Examples
Example #1 IntlCalendar::setFirstDayOfWeek()
<?php
ini_set('date.timezone', 'Europe/Lisbon');
ini_set('intl.default_locale', 'es_ES');$cal = IntlCalendar::createInstance();
$cal->set(2013, 5 /* June */, 30); // A Sundayvar_dump($cal->getFirstDayOfWeek()); // 2 (Monday)echo IntlDateFormatter::formatObject($cal, <<<EOD
'local day of week: 'cc'
week of month : 'W'
week of year : 'ww
EOD
), "\n";$cal->setFirstDayOfWeek(IntlCalendar::DOW_SUNDAY);
echo
IntlDateFormatter::formatObject($cal, <<<EOD
'local day of week: 'cc'
week of month : 'W'
week of year : 'ww
EOD
), "\n";
The above example will output:
int(2) local day of week: 7 week of month : 4 week of year : 26 local day of week: 1 week of month : 5 week of year : 27
There are no user contributed notes for this page.
↑ and ↓ to navigate • Enter to select • Esc to close
Press Enter without selection to search using Google
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4