Lines Matching refs:month

54 	ZEND_ARG_INFO(0, month)
60 ZEND_ARG_INFO(0, month)
75 ZEND_ARG_INFO(0, month)
85 ZEND_ARG_INFO(0, month)
97 ZEND_ARG_INFO(0, month)
107 ZEND_ARG_INFO(0, month)
182 typedef zend_long (*cal_to_jd_func_t) (int month, int day, int year);
183 typedef void (*cal_from_jd_func_t) (zend_long jd, int *year, int *month, int *day);
184 typedef char *(*cal_as_string_func_t) (int year, int month, int day);
329 zend_long cal, month, year; in PHP_FUNCTION() local
333 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &cal, &month, &year) == FAILURE) { in PHP_FUNCTION()
344 sdn_start = calendar->to_jd(year, month, 1); in PHP_FUNCTION()
351 sdn_next = calendar->to_jd(year, 1 + month, 1); in PHP_FUNCTION()
377 zend_long cal, month, day, year; in PHP_FUNCTION() local
379 if (zend_parse_parameters(ZEND_NUM_ARGS(), "llll", &cal, &month, &day, &year) != SUCCESS) { in PHP_FUNCTION()
388 RETURN_LONG(cal_conversion_table[cal].to_jd(year, month, day)); in PHP_FUNCTION()
397 int month, day, year, dow; in PHP_FUNCTION() local
412 calendar->from_jd(jd, &year, &month, &day); in PHP_FUNCTION()
415 zend_strpprintf(0, "%i/%i/%i", month, day, year)); in PHP_FUNCTION()
417 add_assoc_long(return_value, "month", month); in PHP_FUNCTION()
435 add_assoc_string(return_value, "abbrevmonth", (year > 0 ? JEWISH_MONTH_NAME(year)[month] : "")); in PHP_FUNCTION()
436 add_assoc_string(return_value, "monthname", (year > 0 ? JEWISH_MONTH_NAME(year)[month] : "")); in PHP_FUNCTION()
438 add_assoc_string(return_value, "abbrevmonth", calendar->month_name_short[month]); in PHP_FUNCTION()
439 add_assoc_string(return_value, "monthname", calendar->month_name_long[month]); in PHP_FUNCTION()
449 int year, month, day; in PHP_FUNCTION() local
455 SdnToGregorian(julday, &year, &month, &day); in PHP_FUNCTION()
457 RETURN_NEW_STR(zend_strpprintf(0, "%i/%i/%i", month, day, year)); in PHP_FUNCTION()
465 zend_long year, month, day; in PHP_FUNCTION() local
467 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
471 RETURN_LONG(GregorianToSdn(year, month, day)); in PHP_FUNCTION()
480 int year, month, day; in PHP_FUNCTION() local
486 SdnToJulian(julday, &year, &month, &day); in PHP_FUNCTION()
488 RETURN_NEW_STR(zend_strpprintf(0, "%i/%i/%i", month, day, year)); in PHP_FUNCTION()
496 zend_long year, month, day; in PHP_FUNCTION() local
498 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
502 RETURN_LONG(JulianToSdn(year, month, day)); in PHP_FUNCTION()
608 int year, month, day; in PHP_FUNCTION() local
615 SdnToJewish(julday, &year, &month, &day); in PHP_FUNCTION()
617 RETURN_NEW_STR(zend_strpprintf(0, "%i/%i/%i", month, day, year)); in PHP_FUNCTION()
624 … %s %s", heb_number_to_chars(day, fl, &dayp), JEWISH_HEB_MONTH_NAME(year)[month], heb_number_to_ch… in PHP_FUNCTION()
640 zend_long year, month, day; in PHP_FUNCTION() local
642 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
646 RETURN_LONG(JewishToSdn(year, month, day)); in PHP_FUNCTION()
655 int year, month, day; in PHP_FUNCTION() local
661 SdnToFrench(julday, &year, &month, &day); in PHP_FUNCTION()
663 RETURN_NEW_STR(zend_strpprintf(0, "%i/%i/%i", month, day, year)); in PHP_FUNCTION()
671 zend_long year, month, day; in PHP_FUNCTION() local
673 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
677 RETURN_LONG(FrenchToSdn(year, month, day)); in PHP_FUNCTION()
718 int month, day, year; in PHP_FUNCTION() local
726 SdnToGregorian(julday, &year, &month, &day); in PHP_FUNCTION()
727 monthname = MonthNameLong[month]; in PHP_FUNCTION()
730 SdnToJulian(julday, &year, &month, &day); in PHP_FUNCTION()
731 monthname = MonthNameShort[month]; in PHP_FUNCTION()
734 SdnToJulian(julday, &year, &month, &day); in PHP_FUNCTION()
735 monthname = MonthNameLong[month]; in PHP_FUNCTION()
738 SdnToJewish(julday, &year, &month, &day); in PHP_FUNCTION()
739 monthname = (year > 0 ? JEWISH_MONTH_NAME(year)[month] : ""); in PHP_FUNCTION()
742 SdnToFrench(julday, &year, &month, &day); in PHP_FUNCTION()
743 monthname = FrenchMonthName[month]; in PHP_FUNCTION()
747 SdnToGregorian(julday, &year, &month, &day); in PHP_FUNCTION()
748 monthname = MonthNameShort[month]; in PHP_FUNCTION()