PHP | IntlCalendar setFirstDayOfWeek() Function Last Updated : 25 Sep, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The IntlCalendar::setFirstDayOfWeek() function is an inbuilt function in PHP which is used to set the day on which the week is to be started. This function affects the behaviors of fields that depend on the week such as IntlCalendar::FIELD_WEEK_OF_YEAR and IntlCalendar::FIELD_YEAR_WOY. Syntax: Object oriented style bool IntlCalendar::setFirstDayOfWeek( int $dayOfWeek ) Procedural style bool intlcal_set_first_day_of_week( IntlCalendar $cal, int $dayOfWeek ) Parameters: This function uses two parameters as mentioned above and described below: $cal: This parameter holds the resource of IntlCalendar object. $dayOfWeek: This parameter holds one of the field constants such as IntlCalendar::DOW_SUNDAY, IntlCalendar::DOW_MONDAY, ..., IntlCalendar::DOW_SATURDAY. Return Value: This function returns True on success and False in case of invalid parameters. Below program illustrates the IntlCalendar::setFirstDayOfWeek() function in PHP: Program: php <?php // Set the DateTime zone ini_set('date.timezone', 'Asia/Calcutta'); ini_set('intl.default_locale', 'es_ES'); // Create an instance of IntlCalendar $calendar = IntlCalendar::createInstance('Asia/Calcutta'); // Set the DateTime to the calendar object $calendar->set(2019, 8, 25); // Get first day of the week var_dump($calendar->getFirstDayOfWeek()); // Set first day of the week $calendar->setFirstDayOfWeek(IntlCalendar::DOW_SUNDAY); // Get first day of the week var_dump($calendar->getFirstDayOfWeek()); ?> Output: int(2) int(1) Reference: https://www.php.net/manual/en/intlcalendar.setfirstdayofweek.php Comment More infoAdvertise with us Next Article PHP | IntlCalendar setFirstDayOfWeek() Function J jit_t Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Intl Similar Reads PHP IntlCalendar setTime() Function PHP IntlCalendar::setTime() function is an inbuilt function in PHP which is used to set the calendar time object in terms of milliseconds since the epoch. The calendar time instant is represented by the float and its value should be an integer number of milliseconds since the epoch (1 Jan 1970 00:00 2 min read PHP | IntlCalendar set() Function The IntlCalendar::set() function is an inbuilt function in PHP which is used to set the time field or several common fields at once. The range of field value depends on the calendar. This function can not be called with exactly four parameters. Syntax: Object oriented style bool IntlCalendar::set( i 2 min read PHP | IntlCalendar setTimeZone() Function The IntlCalendar::setTimeZone() function is an inbuilt function in PHP which is used to set the new timezone for this calendar. The time is represented in terms of object and it preserves to the detriment of the timezone field values. Syntax: Object oriented style bool IntlCalendar::setTimeZone( mix 2 min read PHP | IntlCalendar toDateTime() Function The IntlCalendar::toDateTime() function is an inbuilt function in PHP which is used to convert an IntlCalendar object into a DateTime object. The DateTime object represents upto second precision with error round less than 1 second. Syntax: Object oriented styleDateTime IntlCalendar::toDateTime( void 1 min read PHP | IntlCalendar roll() Function The IntlCalendar::roll() function is an inbuilt function in PHP which is used to add value to field without carrying into more significant fields. The difference between IntlCalendar::roll() and IntlCalendar::add() function is that, the field value of IntlCalendar::roll() function overflow, it does 2 min read Like