Lines Matching refs:month

53 	ZEND_ARG_INFO(0, month)
59 ZEND_ARG_INFO(0, month)
74 ZEND_ARG_INFO(0, month)
84 ZEND_ARG_INFO(0, month)
96 ZEND_ARG_INFO(0, month)
106 ZEND_ARG_INFO(0, month)
181 typedef zend_long (*cal_to_jd_func_t) (int month, int day, int year);
182 typedef void (*cal_from_jd_func_t) (zend_long jd, int *year, int *month, int *day);
183 typedef char *(*cal_as_string_func_t) (int year, int month, int day);
327 zend_long cal, month, year; in PHP_FUNCTION() local
331 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &cal, &month, &year) == FAILURE) { in PHP_FUNCTION()
342 sdn_start = calendar->to_jd(year, month, 1); in PHP_FUNCTION()
349 sdn_next = calendar->to_jd(year, 1 + month, 1); in PHP_FUNCTION()
375 zend_long cal, month, day, year; in PHP_FUNCTION() local
377 if (zend_parse_parameters(ZEND_NUM_ARGS(), "llll", &cal, &month, &day, &year) != SUCCESS) { in PHP_FUNCTION()
386 RETURN_LONG(cal_conversion_table[cal].to_jd(year, month, day)); in PHP_FUNCTION()
395 int month, day, year, dow; in PHP_FUNCTION() local
411 calendar->from_jd(jd, &year, &month, &day); in PHP_FUNCTION()
413 snprintf(date, sizeof(date), "%i/%i/%i", month, day, year); in PHP_FUNCTION()
416 add_assoc_long(return_value, "month", month); in PHP_FUNCTION()
434 add_assoc_string(return_value, "abbrevmonth", (year > 0 ? JEWISH_MONTH_NAME(year)[month] : "")); in PHP_FUNCTION()
435 add_assoc_string(return_value, "monthname", (year > 0 ? JEWISH_MONTH_NAME(year)[month] : "")); in PHP_FUNCTION()
437 add_assoc_string(return_value, "abbrevmonth", calendar->month_name_short[month]); in PHP_FUNCTION()
438 add_assoc_string(return_value, "monthname", calendar->month_name_long[month]); in PHP_FUNCTION()
448 int year, month, day; in PHP_FUNCTION() local
455 SdnToGregorian(julday, &year, &month, &day); in PHP_FUNCTION()
456 snprintf(date, sizeof(date), "%i/%i/%i", month, day, year); in PHP_FUNCTION()
466 zend_long year, month, day; in PHP_FUNCTION() local
468 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
472 RETURN_LONG(GregorianToSdn(year, month, day)); in PHP_FUNCTION()
481 int year, month, day; in PHP_FUNCTION() local
488 SdnToJulian(julday, &year, &month, &day); in PHP_FUNCTION()
489 snprintf(date, sizeof(date), "%i/%i/%i", month, day, year); in PHP_FUNCTION()
499 zend_long year, month, day; in PHP_FUNCTION() local
501 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
505 RETURN_LONG(JulianToSdn(year, month, day)); in PHP_FUNCTION()
610 int year, month, day; in PHP_FUNCTION() local
618 SdnToJewish(julday, &year, &month, &day); in PHP_FUNCTION()
620 snprintf(date, sizeof(date), "%i/%i/%i", month, day, year); in PHP_FUNCTION()
628 … %s %s", heb_number_to_chars(day, fl, &dayp), JEWISH_HEB_MONTH_NAME(year)[month], heb_number_to_ch… in PHP_FUNCTION()
647 zend_long year, month, day; in PHP_FUNCTION() local
649 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
653 RETURN_LONG(JewishToSdn(year, month, day)); in PHP_FUNCTION()
662 int year, month, day; in PHP_FUNCTION() local
669 SdnToFrench(julday, &year, &month, &day); in PHP_FUNCTION()
670 snprintf(date, sizeof(date), "%i/%i/%i", month, day, year); in PHP_FUNCTION()
680 zend_long year, month, day; in PHP_FUNCTION() local
682 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
686 RETURN_LONG(FrenchToSdn(year, month, day)); in PHP_FUNCTION()
727 int month, day, year; in PHP_FUNCTION() local
735 SdnToGregorian(julday, &year, &month, &day); in PHP_FUNCTION()
736 monthname = MonthNameLong[month]; in PHP_FUNCTION()
739 SdnToJulian(julday, &year, &month, &day); in PHP_FUNCTION()
740 monthname = MonthNameShort[month]; in PHP_FUNCTION()
743 SdnToJulian(julday, &year, &month, &day); in PHP_FUNCTION()
744 monthname = MonthNameLong[month]; in PHP_FUNCTION()
747 SdnToJewish(julday, &year, &month, &day); in PHP_FUNCTION()
748 monthname = (year > 0 ? JEWISH_MONTH_NAME(year)[month] : ""); in PHP_FUNCTION()
751 SdnToFrench(julday, &year, &month, &day); in PHP_FUNCTION()
752 monthname = FrenchMonthName[month]; in PHP_FUNCTION()
756 SdnToGregorian(julday, &year, &month, &day); in PHP_FUNCTION()
757 monthname = MonthNameShort[month]; in PHP_FUNCTION()