Home
last modified time | relevance | path

Searched refs:IntlGregorianCalendar (Results 1 – 25 of 57) sorted by relevance

123

/PHP-8.3/ext/intl/tests/
H A Dgregoriancalendar_set_date_time_error.phpt2 IntlGregorianCalendar::setDateTime(): error cases
10 var_dump(IntlGregorianCalendar::createFromDateTime(99999999999, 1, 1, 1, 1, 1));
16 var_dump(IntlGregorianCalendar::createFromDateTime(1, 99999999999, 1, 1, 1, 1));
22 var_dump(IntlGregorianCalendar::createFromDateTime(1, 1, 99999999999, 1, 1, 1));
28 var_dump(IntlGregorianCalendar::createFromDateTime(1, 1, 1, 99999999999, 1, 1));
34 var_dump(IntlGregorianCalendar::createFromDateTime(1, 1, 1, 1, 99999999999, 1));
40 var_dump(IntlGregorianCalendar::createFromDateTime(1, 1, 1, 1, 1, 99999999999));
47 IntlGregorianCalendar::createFromDateTime(): Argument #1 ($year) must be between -2147483648 and 21…
48 IntlGregorianCalendar::createFromDateTime(): Argument #2 ($month) must be between -2147483648 and 2…
50 IntlGregorianCalendar::createFromDateTime(): Argument #4 ($hour) must be between -2147483648 and 21…
[all …]
H A Dgregoriancalendar_set_date_error.phpt2 IntlGregorianCalendar::setDate(): error cases
10 var_dump(IntlGregorianCalendar::createFromDate(99999999999, 1, 1));
16 var_dump(IntlGregorianCalendar::createFromDate(1, 99999999999, 1));
22 var_dump(IntlGregorianCalendar::createFromDate(1, 1, 99999999999));
29 IntlGregorianCalendar::createFromDate(): Argument #1 ($year) must be between -2147483648 and 214748…
30 IntlGregorianCalendar::createFromDate(): Argument #2 ($month) must be between -2147483648 and 21474…
31 IntlGregorianCalendar::createFromDate(): Argument #3 ($dayOfMonth) must be between -2147483648 and …
H A Dgregoriancalendar___construct_error.phpt2 IntlGregorianCalendar::__construct(): bad arguments
25 var_dump(new IntlGregorianCalendar(1,2,NULL,4));
30 var_dump(new IntlGregorianCalendar(1,2,3,4,5,array()));
35 $cal = new IntlGregorianCalendar();
47 IntlGregorianCalendar::__construct(): Argument #6 ($second) must be of type int, array given
48 IntlGregorianCalendar object is already constructed
H A Dgregoriancalendar___construct_basic.phpt2 IntlGregorianCalendar::__construct(): basic
16 $intlcal = new IntlGregorianCalendar('Europe/Lisbon', NULL);
20 $intlcal = new IntlGregorianCalendar(NULL, 'pt_PT');
24 $intlcal = new IntlGregorianCalendar('Europe/Lisbon', 'pt_PT');
28 $intlcal = new IntlGregorianCalendar('Europe/Paris', 'fr_CA', NULL, NULL, NULL, NULL);
H A Dgregoriancalendar_isLeapYear_basic.phpt2 IntlGregorianCalendar::isLeapYear(): basic test
12 $intlcal = new IntlGregorianCalendar();
H A Dgregoriancalendar_get_setGregorianChange_basic.phpt2 IntlGregorianCalendar::get/setGregorianChange(): basic test
12 $intlcal = new IntlGregorianCalendar();
H A Dgregoriancalendar___construct_variant1.phpt2 IntlGregorianCalendar::__construct(): argument variants
15 $intlcal = new IntlGregorianCalendar(2012, 1, 29, 16, 7, 8);
H A Dgregoriancalendar_getGregorianChange_error.phpt2 IntlGregorianCalendar::getGregorianChange(): bad arguments
15 …l_get_gregorian_change(): Argument #1 ($calendar) must be of type IntlGregorianCalendar, int given…
H A Dgregoriancalendar_isLeapYear_error.phpt2 IntlGregorianCalendar::isLeapYear(): bad arguments
15 …tlgregcal_is_leap_year(): Argument #1 ($calendar) must be of type IntlGregorianCalendar, int given…
H A Dcalendar_roll_basic.phpt12 $intlcal = new IntlGregorianCalendar(2012, 1, 28);
17 $intlcal = new IntlGregorianCalendar(2012, 1, 28);
H A Dcalendar_equals_before_after_basic.phpt12 $intlcal1 = IntlGregorianCalendar::createFromDateTime(2012, 1, 29, 16, 59, 59);
14 $intlcal3 = IntlGregorianCalendar::createFromDateTime(2012, 1, 29, 17, 00, 00);
H A Dcalendar_toDateTime_basic.phpt11 $cal = new IntlGregorianCalendar(2012,04,17,17,35,36);
H A Dbug75090.phpt10 $intlGregorianCalendarRef = new ReflectionClass(IntlGregorianCalendar::class);
H A Ddateformat_timezone_arg_variations.phpt28 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Amsterdam', new IntlGregorianCalendar('Europe/Li…
32 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, new IntlGregorianCalendar('Europe/Lisbon'));
H A Ddateformat_timezone_arg_variations2.phpt28 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Amsterdam', new IntlGregorianCalendar('Europe/Li…
32 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, new IntlGregorianCalendar('Europe/Lisbon'));
H A Ddateformat_timezone_arg_variations4.phpt28 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Amsterdam', new IntlGregorianCalendar('Europe/Li…
32 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, new IntlGregorianCalendar('Europe/Lisbon'));
H A Dcalendar_getDayOfWeekType_error.phpt9 $c = new IntlGregorianCalendar(NULL, 'pt_PT');
H A Dcalendar_isSet_error.phpt10 $c = new IntlGregorianCalendar(NULL, 'pt_PT');
H A Dcalendar_roll_error.phpt10 $c = new IntlGregorianCalendar(NULL, 'pt_PT');
H A Ddateformat_create_cal_arg.phpt15 $cal = new IntlGregorianCalendar('UTC', NULL);
24 $cal = new IntlGregorianCalendar('UTC', NULL);
H A Ddateformat_create_cal_arg_variant2.phpt15 $cal = new IntlGregorianCalendar('UTC', NULL);
24 $cal = new IntlGregorianCalendar('UTC', NULL);
H A Ddateformat_create_cal_arg_variant3.phpt16 $cal = new IntlGregorianCalendar('UTC', NULL);
25 $cal = new IntlGregorianCalendar('UTC', NULL);
H A Ddateformat_create_cal_arg_variant4.phpt16 $cal = new IntlGregorianCalendar('UTC', NULL);
25 $cal = new IntlGregorianCalendar('UTC', NULL);
H A Ddateformat_create_cal_arg_variant5.phpt15 $cal = new IntlGregorianCalendar('UTC', NULL);
24 $cal = new IntlGregorianCalendar('UTC', NULL);
H A Ddateformat_timezone_arg_variations3.phpt29 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Amsterdam', new IntlGregorianCalendar('Europe/Li…
33 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, new IntlGregorianCalendar('Europe/Lisbon'));

Completed in 36 milliseconds

123