mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
16 lines
361 B
PHP
16 lines
361 B
PHP
--TEST--
|
|
IntlCalendar::getMinimalDaysInFirstWeek() basic test
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
ini_set("intl.default_locale", "nl");
|
|
|
|
$intlcal = IntlCalendar::createInstance('UTC');
|
|
var_dump($intlcal->getMinimalDaysInFirstWeek());
|
|
var_dump(intlcal_get_minimal_days_in_first_week($intlcal));
|
|
?>
|
|
--EXPECT--
|
|
int(4)
|
|
int(4)
|