Home
last modified time | relevance | path

Searched refs:cal (Results 1 – 25 of 32) sorted by relevance

12

/PHP-7.0/ext/intl/tests/
H A Dcalendar_createInstance_variation1.phpt16 $cal = intlcal_create_instance('Europe/Amsterdam');
17 print_R($cal->getTimeZone());
18 print_R($cal->getLocale(Locale::ACTUAL_LOCALE));
22 print_R($cal->getTimeZone());
23 print_R($cal->getLocale(Locale::ACTUAL_LOCALE));
27 print_R($cal->getTimeZone());
28 print_R($cal->getLocale(Locale::ACTUAL_LOCALE));
31 $cal = intlcal_create_instance(null, "pt");
32 print_R($cal->getTimeZone());
33 print_R($cal->getLocale(Locale::ACTUAL_LOCALE));
[all …]
H A Dcalendar_fromDateTime_basic.phpt13 $cal = IntlCalendar::fromDateTime('2012-01-01 00:00:00 Europe/Rome');
15 $cal->getTime(),
17 $cal->getTimeZone()->getID(),
18 $cal->getLocale(1)
22 $cal = IntlCalendar::fromDateTime(new DateTime('2012-01-01 00:00:00 PST'), "pt_PT");
24 $cal->getTime(),
26 $cal->getTimeZone()->getID(),
27 $cal->getLocale(1)
32 $cal = intlcal_from_date_time(new DateTime('2012-01-01 00:00:00 +03:40'));
34 $cal->getTime(),
[all …]
H A Ddateformat_formatObject_calendar_variant2.phpt13 $cal = IntlCalendar::fromDateTime('2012-01-01 00:00:00'); //Europe/Lisbon
14 echo IntlDateFormatter::formatObject($cal), "\n";
15 echo IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";
16 echo IntlDateFormatter::formatObject($cal, null, "en-US"), "\n";
18 echo IntlDateFormatter::formatObject($cal, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
20 $cal = IntlCalendar::fromDateTime('2012-01-01 05:00:00+03:00');
21 echo datefmt_format_object($cal, IntlDateFormatter::FULL), "\n";
23 $cal = IntlCalendar::createInstance(null,'en-US@calendar=islamic-civil');
24 $cal->setTime(strtotime('2012-01-01 00:00:00')*1000.);
25 echo IntlDateFormatter::formatObject($cal), "\n";
[all …]
H A Ddateformat_formatObject_calendar_variant5.phpt13 $cal = IntlCalendar::fromDateTime('2012-01-01 00:00:00'); //Europe/Lisbon
14 echo IntlDateFormatter::formatObject($cal), "\n";
15 echo IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";
16 echo IntlDateFormatter::formatObject($cal, null, "en-US"), "\n";
18 echo IntlDateFormatter::formatObject($cal, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
20 $cal = IntlCalendar::fromDateTime('2012-01-01 05:00:00+03:00');
21 echo datefmt_format_object($cal, IntlDateFormatter::FULL), "\n";
23 $cal = IntlCalendar::createInstance(null,'en-US@calendar=islamic-civil');
24 $cal->setTime(strtotime('2012-01-01 00:00:00')*1000.);
25 echo IntlDateFormatter::formatObject($cal), "\n";
[all …]
H A Ddateformat_formatObject_calendar.phpt13 $cal = IntlCalendar::fromDateTime('2012-01-01 00:00:00'); //Europe/Lisbon
14 echo IntlDateFormatter::formatObject($cal), "\n";
15 echo IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";
16 echo IntlDateFormatter::formatObject($cal, null, "en-US"), "\n";
18 echo IntlDateFormatter::formatObject($cal, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
20 $cal = IntlCalendar::fromDateTime('2012-01-01 05:00:00+03:00');
21 echo datefmt_format_object($cal, IntlDateFormatter::FULL), "\n";
23 $cal = IntlCalendar::createInstance(null,'en-US@calendar=islamic-civil');
24 $cal->setTime(strtotime('2012-01-01 00:00:00')*1000.);
25 echo IntlDateFormatter::formatObject($cal), "\n";
[all …]
H A Ddateformat_formatObject_calendar_variant3.phpt14 $cal = IntlCalendar::fromDateTime('2012-01-01 00:00:00'); //Europe/Lisbon
15 echo IntlDateFormatter::formatObject($cal), "\n";
16 echo IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";
17 echo IntlDateFormatter::formatObject($cal, null, "en-US"), "\n";
19 echo IntlDateFormatter::formatObject($cal, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
21 $cal = IntlCalendar::fromDateTime('2012-01-01 05:00:00+03:00');
22 echo datefmt_format_object($cal, IntlDateFormatter::FULL), "\n";
24 $cal = IntlCalendar::createInstance(null,'en-US@calendar=islamic-civil');
25 $cal->setTime(strtotime('2012-01-01 00:00:00')*1000.);
26 echo IntlDateFormatter::formatObject($cal), "\n";
[all …]
H A Ddateformat_formatObject_calendar_variant4.phpt14 $cal = IntlCalendar::fromDateTime('2012-01-01 00:00:00'); //Europe/Lisbon
15 echo IntlDateFormatter::formatObject($cal), "\n";
16 echo IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";
17 echo IntlDateFormatter::formatObject($cal, null, "en-US"), "\n";
19 echo IntlDateFormatter::formatObject($cal, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
21 $cal = IntlCalendar::fromDateTime('2012-01-01 05:00:00+03:00');
22 echo datefmt_format_object($cal, IntlDateFormatter::FULL), "\n";
24 $cal = IntlCalendar::createInstance(null,'en-US@calendar=islamic-civil');
25 $cal->setTime(strtotime('2012-01-01 00:00:00')*1000.);
26 echo IntlDateFormatter::formatObject($cal), "\n";
[all …]
H A Dcalendar_createInstance_basic.phpt16 $cal = IntlCalendar::createInstance();
17 print_R($cal->getTimeZone());
18 print_R($cal->getLocale(Locale::ACTUAL_LOCALE));
20 print_R($cal->getType());
23 $timeMillis = $cal->getTime();
H A Dcalendar_toDateTime_error.phpt12 $cal = new IntlGregorianCalendar();
13 var_dump($cal->toDateTime(3));
15 var_dump(intlcal_to_date_time($cal, 3));
17 $cal = new IntlGregorianCalendar("Etc/Unknown");
19 var_dump($cal->toDateTime());
H A Ddateformat_create_cal_arg.phpt15 $cal = new IntlGregorianCalendar('UTC', NULL);
16 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, $cal);
19 $cal = IntlCalendar::createInstance('UTC', 'en@calendar=islamic');
20 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, $cal);
24 $cal = new IntlGregorianCalendar('UTC', NULL);
25 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Madrid', $cal);
H A Ddateformat_create_cal_arg_variant3.phpt16 $cal = new IntlGregorianCalendar('UTC', NULL);
17 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, $cal);
20 $cal = IntlCalendar::createInstance('UTC', 'en@calendar=islamic');
21 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, $cal);
25 $cal = new IntlGregorianCalendar('UTC', NULL);
26 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Madrid', $cal);
H A Ddateformat_create_cal_arg_variant4.phpt16 $cal = new IntlGregorianCalendar('UTC', NULL);
17 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, $cal);
20 $cal = IntlCalendar::createInstance('UTC', 'en@calendar=islamic');
21 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, $cal);
25 $cal = new IntlGregorianCalendar('UTC', NULL);
26 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Madrid', $cal);
H A Ddateformat_create_cal_arg_variant5.phpt15 $cal = new IntlGregorianCalendar('UTC', NULL);
16 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, $cal);
19 $cal = IntlCalendar::createInstance('UTC', 'en@calendar=islamic');
20 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, $cal);
24 $cal = new IntlGregorianCalendar('UTC', NULL);
25 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Madrid', $cal);
H A Ddateformat_create_cal_arg_variant2.phpt15 $cal = new IntlGregorianCalendar('UTC', NULL);
16 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, $cal);
19 $cal = IntlCalendar::createInstance('UTC', 'en@calendar=islamic');
20 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, $cal);
24 $cal = new IntlGregorianCalendar('UTC', NULL);
25 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Madrid', $cal);
H A Ddateformat_formatObject_error.phpt22 $cal = IntlCalendar::createInstance();
23 var_dump(IntlDateFormatter::formatObject($cal, -2));
24 var_dump(IntlDateFormatter::formatObject($cal, array()));
25 var_dump(IntlDateFormatter::formatObject($cal, array(1,2,3)));
26 var_dump(IntlDateFormatter::formatObject($cal, array(array(), 1)));
27 var_dump(IntlDateFormatter::formatObject($cal, array(1, -2)));
28 var_dump(IntlDateFormatter::formatObject($cal, ""));
29 var_dump(IntlDateFormatter::formatObject($cal, "YYYY", array()));
H A Dcalendar_toDateTime_basic.phpt13 $cal = new IntlGregorianCalendar(2012,04,17,17,35,36);
15 $dt = $cal->toDateTime();
H A Ddateformat_get_set_calendar.phpt28 //changing the calendar with a cal type should not change tz
33 $cal = IntlCalendar::createInstance("UTC");
34 $df->setCalendar($cal);
H A Ddateformat_get_set_calendar_variant2.phpt28 //changing the calendar with a cal type should not change tz
33 $cal = IntlCalendar::createInstance("UTC");
34 $df->setCalendar($cal);
H A Ddateformat_get_set_calendar_variant5.phpt28 //changing the calendar with a cal type should not change tz
33 $cal = IntlCalendar::createInstance("UTC");
34 $df->setCalendar($cal);
H A Ddateformat_get_set_calendar_variant3.phpt29 //changing the calendar with a cal type should not change tz
34 $cal = IntlCalendar::createInstance("UTC");
35 $df->setCalendar($cal);
H A Ddateformat_get_set_calendar_variant4.phpt29 //changing the calendar with a cal type should not change tz
34 $cal = IntlCalendar::createInstance("UTC");
35 $df->setCalendar($cal);
/PHP-7.0/ext/intl/dateformat/
H A Ddateformat_attrcpp.cpp170 const Calendar *cal = fetch_datefmt(dfo)->getCalendar(); in PHP_FUNCTION() local
171 if (cal == NULL) { in PHP_FUNCTION()
175 Calendar *cal_clone = cal->clone(); in PHP_FUNCTION()
206 Calendar *cal; in PHP_FUNCTION() local
215 "datefmt_set_calendar", INTL_DATA_ERROR_P(dfo), cal, cal_type, in PHP_FUNCTION()
227 delete cal; in PHP_FUNCTION()
230 cal->adoptTimeZone(old_timezone); in PHP_FUNCTION()
232 cal = cal->clone(); in PHP_FUNCTION()
233 if (cal == NULL) { in PHP_FUNCTION()
241 fetch_datefmt(dfo)->adoptCalendar(cal); in PHP_FUNCTION()
H A Ddateformat_helpers.cpp35 Calendar*& cal, in datefmt_process_calendar_arg() argument
45 cal = new GregorianCalendar(locale, status); in datefmt_process_calendar_arg()
63 cal = Calendar::createInstance(locale, status); in datefmt_process_calendar_arg()
65 cal = new GregorianCalendar(locale, status); in datefmt_process_calendar_arg()
75 cal = calendar_fetch_native_calendar(calendar_zv); in datefmt_process_calendar_arg()
76 if (cal == NULL) { in datefmt_process_calendar_arg()
95 if (cal == NULL && !U_FAILURE(status)) { in datefmt_process_calendar_arg()
H A Ddateformat_format_object.cpp72 Calendar *cal = NULL; in PHP_FUNCTION() local
169 cal = obj_cal->clone(); in PHP_FUNCTION()
175 cal = new GregorianCalendar(Locale::createFromName(locale_str), status); in PHP_FUNCTION()
218 df->adoptCalendar(cal); in PHP_FUNCTION()
219 cal = NULL; in PHP_FUNCTION()
243 delete cal; in PHP_FUNCTION()
/PHP-7.0/ext/calendar/
H A Dcalendar.c292 zend_long cal = -1; in PHP_FUNCTION() local
299 if (cal == -1) { in PHP_FUNCTION()
313 if (cal != -1 && (cal < 0 || cal >= CAL_NUM_CALS)) { in PHP_FUNCTION()
318 _php_cal_info(cal, return_value); in PHP_FUNCTION()
327 zend_long cal, month, year; in PHP_FUNCTION() local
335 if (cal < 0 || cal >= CAL_NUM_CALS) { in PHP_FUNCTION()
375 zend_long cal, month, day, year; in PHP_FUNCTION() local
381 if (cal < 0 || cal >= CAL_NUM_CALS) { in PHP_FUNCTION()
394 zend_long jd, cal; in PHP_FUNCTION() local
403 if (cal < 0 || cal >= CAL_NUM_CALS) { in PHP_FUNCTION()
[all …]

Completed in 77 milliseconds

12