mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
a4538a4ca2
and IntlCalendar::setMinimalDaysInFirstWeek(). This one had slipped. we had a ::getMinimalDaysInFirstWeek() but no way to change the value.
27 lines
553 B
PHP
27 lines
553 B
PHP
--TEST--
|
|
IntlCalendar::setMinimalDaysInFirstWeek() basic test
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('intl'))
|
|
die('skip intl extension not enabled');
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
ini_set("intl.default_locale", "nl");
|
|
|
|
$intlcal = IntlCalendar::createInstance('UTC');
|
|
var_dump(
|
|
$intlcal->setMinimalDaysInFirstWeek(6),
|
|
$intlcal->getMinimalDaysInFirstWeek(),
|
|
intlcal_set_minimal_days_in_first_week($intlcal, 5),
|
|
$intlcal->getMinimalDaysInFirstWeek()
|
|
);
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
bool(true)
|
|
int(6)
|
|
bool(true)
|
|
int(5)
|
|
==DONE==
|