month              53 ext/calendar/calendar.c 	ZEND_ARG_INFO(0, month)
month              59 ext/calendar/calendar.c 	ZEND_ARG_INFO(0, month)
month              74 ext/calendar/calendar.c 	ZEND_ARG_INFO(0, month)
month              84 ext/calendar/calendar.c 	ZEND_ARG_INFO(0, month)
month              96 ext/calendar/calendar.c 	ZEND_ARG_INFO(0, month)
month             106 ext/calendar/calendar.c 	ZEND_ARG_INFO(0, month)
month             181 ext/calendar/calendar.c typedef long int (*cal_to_jd_func_t) (int month, int day, int year);
month             182 ext/calendar/calendar.c typedef void (*cal_from_jd_func_t) (long int jd, int *year, int *month, int *day);
month             183 ext/calendar/calendar.c typedef char *(*cal_as_string_func_t) (int year, int month, int day);
month             329 ext/calendar/calendar.c 	long cal, month, year;
month             333 ext/calendar/calendar.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &cal, &month, &year) == FAILURE) {
month             344 ext/calendar/calendar.c 	sdn_start = calendar->to_jd(year, month, 1);
month             351 ext/calendar/calendar.c 	sdn_next = calendar->to_jd(year, 1 + month, 1);
month             373 ext/calendar/calendar.c 	long cal, month, day, year;
month             375 ext/calendar/calendar.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "llll", &cal, &month, &day, &year) != SUCCESS) {
month             384 ext/calendar/calendar.c 	RETURN_LONG(cal_conversion_table[cal].to_jd(year, month, day));
month             393 ext/calendar/calendar.c 	int month, day, year, dow;
month             409 ext/calendar/calendar.c 	calendar->from_jd(jd, &year, &month, &day);
month             411 ext/calendar/calendar.c 	snprintf(date, sizeof(date), "%i/%i/%i", month, day, year);
month             414 ext/calendar/calendar.c 	add_assoc_long(return_value, "month", month);
month             426 ext/calendar/calendar.c 		add_assoc_string(return_value, "abbrevmonth", JEWISH_MONTH_NAME(year)[month], 1);
month             427 ext/calendar/calendar.c 		add_assoc_string(return_value, "monthname", JEWISH_MONTH_NAME(year)[month], 1);
month             429 ext/calendar/calendar.c 		add_assoc_string(return_value, "abbrevmonth", calendar->month_name_short[month], 1);
month             430 ext/calendar/calendar.c 		add_assoc_string(return_value, "monthname", calendar->month_name_long[month], 1);
month             440 ext/calendar/calendar.c 	int year, month, day;
month             447 ext/calendar/calendar.c 	SdnToGregorian(julday, &year, &month, &day);
month             448 ext/calendar/calendar.c 	snprintf(date, sizeof(date), "%i/%i/%i", month, day, year);
month             458 ext/calendar/calendar.c 	long year, month, day;
month             460 ext/calendar/calendar.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &month, &day, &year) == FAILURE) {
month             464 ext/calendar/calendar.c 	RETURN_LONG(GregorianToSdn(year, month, day));
month             473 ext/calendar/calendar.c 	int year, month, day;
month             480 ext/calendar/calendar.c 	SdnToJulian(julday, &year, &month, &day);
month             481 ext/calendar/calendar.c 	snprintf(date, sizeof(date), "%i/%i/%i", month, day, year);
month             491 ext/calendar/calendar.c 	long year, month, day;
month             493 ext/calendar/calendar.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &month, &day, &year) == FAILURE) {
month             497 ext/calendar/calendar.c 	RETURN_LONG(JulianToSdn(year, month, day));
month             602 ext/calendar/calendar.c 	int year, month, day;
month             610 ext/calendar/calendar.c 	SdnToJewish(julday, &year, &month, &day);
month             612 ext/calendar/calendar.c 		snprintf(date, sizeof(date), "%i/%i/%i", month, day, year);
month             620 ext/calendar/calendar.c 		snprintf(hebdate, sizeof(hebdate), "%s %s %s", heb_number_to_chars(day, fl, &dayp), JEWISH_HEB_MONTH_NAME(year)[month], heb_number_to_chars(year, fl, &yearp));
month             639 ext/calendar/calendar.c 	long year, month, day;
month             641 ext/calendar/calendar.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &month, &day, &year) == FAILURE) {
month             645 ext/calendar/calendar.c 	RETURN_LONG(JewishToSdn(year, month, day));
month             654 ext/calendar/calendar.c 	int year, month, day;
month             661 ext/calendar/calendar.c 	SdnToFrench(julday, &year, &month, &day);
month             662 ext/calendar/calendar.c 	snprintf(date, sizeof(date), "%i/%i/%i", month, day, year);
month             672 ext/calendar/calendar.c 	long year, month, day;
month             674 ext/calendar/calendar.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &month, &day, &year) == FAILURE) {
month             678 ext/calendar/calendar.c 	RETURN_LONG(FrenchToSdn(year, month, day));
month             719 ext/calendar/calendar.c 	int month, day, year;
month             727 ext/calendar/calendar.c 		SdnToGregorian(julday, &year, &month, &day);
month             728 ext/calendar/calendar.c 		monthname = MonthNameLong[month];
month             731 ext/calendar/calendar.c 		SdnToJulian(julday, &year, &month, &day);
month             732 ext/calendar/calendar.c 		monthname = MonthNameShort[month];
month             735 ext/calendar/calendar.c 		SdnToJulian(julday, &year, &month, &day);
month             736 ext/calendar/calendar.c 		monthname = MonthNameLong[month];
month             739 ext/calendar/calendar.c 		SdnToJewish(julday, &year, &month, &day);
month             740 ext/calendar/calendar.c 		monthname = JEWISH_MONTH_NAME(year)[month];
month             743 ext/calendar/calendar.c 		SdnToFrench(julday, &year, &month, &day);
month             744 ext/calendar/calendar.c 		monthname = FrenchMonthName[month];
month             748 ext/calendar/calendar.c 		SdnToGregorian(julday, &year, &month, &day);
month             749 ext/calendar/calendar.c 		monthname = MonthNameShort[month];
month             119 ext/calendar/french.c 						int month,
month             124 ext/calendar/french.c 		month < 1 || month > 13 ||
month             129 ext/calendar/french.c 			+ (month - 1) * DAYS_PER_MONTH
month             145 ext/calendar/gregor.c 	int month;
month             166 ext/calendar/gregor.c 	month = temp / DAYS_PER_5_MONTHS;
month             170 ext/calendar/gregor.c 	if (month < 10) {
month             171 ext/calendar/gregor.c 		month += 3;
month             174 ext/calendar/gregor.c 		month -= 9;
month             183 ext/calendar/gregor.c 	*pMonth = month;
month             199 ext/calendar/gregor.c 	int month;
month             225 ext/calendar/gregor.c 		month = inputMonth - 3;
month             227 ext/calendar/gregor.c 		month = inputMonth + 9;
month             233 ext/calendar/gregor.c 			+ (month * DAYS_PER_5_MONTHS + 2) / 5
month             689 ext/calendar/jewish.c 						int month,
month             705 ext/calendar/jewish.c 	switch (month) {
month             711 ext/calendar/jewish.c 			if (month == 1) {
month             754 ext/calendar/jewish.c 			if (month == 4) {
month             756 ext/calendar/jewish.c 			} else if (month == 5) {
month             768 ext/calendar/jewish.c 			switch (month) {
month             162 ext/calendar/julian.c 	int month;
month             188 ext/calendar/julian.c 	month = temp / DAYS_PER_5_MONTHS;
month             192 ext/calendar/julian.c 	if (month < 10) {
month             193 ext/calendar/julian.c 		month += 3;
month             196 ext/calendar/julian.c 		month -= 9;
month             205 ext/calendar/julian.c 	*pMonth = month;
month             221 ext/calendar/julian.c 	int month;
month             244 ext/calendar/julian.c 		month = inputMonth - 3;
month             246 ext/calendar/julian.c 		month = inputMonth + 9;
month             251 ext/calendar/julian.c 			+ (month * DAYS_PER_5_MONTHS + 2) / 5
month              70 ext/calendar/sdncal.h long int GregorianToSdn(int year, int month, int day);
month              76 ext/calendar/sdncal.h long int JulianToSdn(int year, int month, int day);
month              80 ext/calendar/sdncal.h long int JewishToSdn(int year, int month, int day);
month              29 ext/date/lib/astro.h #define day_length(year,month,day,lon,lat)  \
month              30 ext/date/lib/astro.h         __daylen__( year, month, day, lon, lat, -35.0/60.0, 1 )
month              35 ext/date/lib/astro.h #define day_civil_twilight_length(year,month,day,lon,lat)  \
month              36 ext/date/lib/astro.h         __daylen__( year, month, day, lon, lat, -6.0, 0 )
month              41 ext/date/lib/astro.h #define day_nautical_twilight_length(year,month,day,lon,lat)  \
month              42 ext/date/lib/astro.h         __daylen__( year, month, day, lon, lat, -12.0, 0 )
month              47 ext/date/lib/astro.h #define day_astronomical_twilight_length(year,month,day,lon,lat)  \
month              48 ext/date/lib/astro.h         __daylen__( year, month, day, lon, lat, -18.0, 0 )
month              68 ext/date/lib/tm2unixtime.c 	timelib_sll month, year;
month              74 ext/date/lib/tm2unixtime.c 	month = *base_m;
month              81 ext/date/lib/tm2unixtime.c 			dec_month(&year, &month);
month              83 ext/date/lib/tm2unixtime.c 			days = leapyear ? days_in_month_leap[month] : days_in_month[month];
month              93 ext/date/lib/tm2unixtime.c 			days = leapyear ? days_in_month_leap[month] : days_in_month[month];
month              99 ext/date/lib/tm2unixtime.c 			inc_month(&year, &month);
month             349 ext/date/lib/tm2unixtime.c static timelib_sll do_months(timelib_ull month, timelib_ull year)
month             352 ext/date/lib/tm2unixtime.c 		return ((month_tab_leap[month - 1] + 1) * SECS_PER_DAY);
month             354 ext/date/lib/tm2unixtime.c 		return ((month_tab[month - 1]) * SECS_PER_DAY);
month             102 ext/date/php_date.c 	ZEND_ARG_INFO(0, month)
month             269 ext/date/php_date.c 	ZEND_ARG_INFO(0, month)
month             275 ext/date/php_date.c 	ZEND_ARG_INFO(0, month)
month            2968 ext/date/php_date.c 	PHP_DATE_PARSE_DATE_SET_TIME_ELEMENT(month,     m);
month             105 ext/intl/dateformat/dateformat_format.c 				month,
month             120 ext/intl/dateformat/dateformat_format.c 	month	= INTL_GET_ELEM(CALENDAR_MON);
month             139 ext/intl/dateformat/dateformat_format.c 	ucal_setDateTime(pcal, year, month, mday, hour, minute, second, &INTL_DATA_ERROR_CODE(dfo));
month            1045 ext/mssql/php_mssql.c 					spprintf(&res_buf, 0, "%d-%02d-%02d %02d:%02d:%02d" , dateinfo.year, dateinfo.month, dateinfo.day, dateinfo.hour, dateinfo.minute, dateinfo.second);
month            1125 ext/mssql/php_mssql.c 			spprintf(&res_buf, 0, "%d-%02d-%02d %02d:%02d:%02d" , dateinfo.year, dateinfo.month, dateinfo.day, dateinfo.hour, dateinfo.minute, dateinfo.second);
month              44 ext/mysqlnd/mysqlnd_ps_codec.c   unsigned int  year, month, day, hour, minute, second;
month             232 ext/mysqlnd/mysqlnd_ps_codec.c 		t.year			= t.month= 0;
month             273 ext/mysqlnd/mysqlnd_ps_codec.c 		t.month = (unsigned int) to[2];
month             282 ext/mysqlnd/mysqlnd_ps_codec.c 	length = mnd_sprintf(&value, 0, "%04u-%02u-%02u", t.year, t.month, t.day);
month             308 ext/mysqlnd/mysqlnd_ps_codec.c 		t.month = (unsigned int) to[2];
month             326 ext/mysqlnd/mysqlnd_ps_codec.c 	length = mnd_sprintf(&value, 0, "%04u-%02u-%02u %02u:%02u:%02u", t.year, t.month, t.day, t.hour, t.minute, t.second);
month             278 ext/pdo_dblib/dblib_stmt.c 					di.year,     di.month,       di.day,        di.hour,     di.minute,     di.second