Home
last modified time | relevance | path

Searched refs:month (Results 26 – 50 of 113) sorted by relevance

12345

/PHP-5.6/ext/date/tests/
H A Dstrftime_variation12.phpt2 Test strftime() function : usage variation - Checking month related formats which are supported oth…
24 echo "\n-- Testing strftime() function with Abbreviated month name format %h --\n";
34 -- Testing strftime() function with Abbreviated month name format %h --
H A DDateTime_setDate_error.phpt5 /* Prototype : public DateTime DateTime::setDate ( int $year , int $month , int $day )
22 $month = 1;
25 var_dump( $datetime->setDate($year, $month) );
29 var_dump( $datetime->setDate($year, $month, $day, $extra_arg) );
H A Ddate_date_set_error.phpt5 /* Prototype : DateTime date_date_set ( DateTime $object , int $year , int $month , int $day )
21 $month = 1;
25 var_dump( date_date_set($datetime, $year, $month) );
29 var_dump( date_date_set($datetime, $year, $month, $day, $extra_arg) );
H A Ddate-parse-by-format001.phpt13 [month] => 6
34 [month] => 6
H A Dbug30096.phpt21 function gm_date_check($hour, $minute, $second, $month, $day, $year) {
24 echo "gmmktime($hour,$minute,$second,$month,$day,$year): ";
27 $ts = gmmktime($hour, $minute, $second, $month, $day, $year);
H A Ddate_parse_basic1.phpt26 ["month"]=>
54 ["month"]=>
82 ["month"]=>
H A Dgetdate_variation2.phpt57 ["month"]=>
83 ["month"]=>
109 ["month"]=>
H A Dgetdate_variation6.phpt52 ["month"]=>
78 ["month"]=>
104 ["month"]=>
H A Dmktime_error.phpt5 … date("H") [, int $minute= date("i") [, int $second= date("s") [, int $month= date("n") [, int…
24 $month = 7;
29 var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $is_dst, $extra_arg) );
H A Dbug33869.phpt9 echo date(DATE_ISO8601, strtotime('+1month', $tm));
15 echo date(DATE_ISO8601, strtotime('+1 month', $tm));
H A Dgetdate_variation3.phpt57 ["month"]=>
83 ["month"]=>
109 ["month"]=>
H A D008.phpt37 ["month"]=>
61 ["month"]=>
H A Dcheckdate_variation1.phpt2 Test checkdate() function : usage variation - Passing unexpected values to first argument $month.
5 /* Prototype : bool checkdate ( int $month , int $day , int $year )
11 echo "*** Testing checkdate() : usage variation - unexpected values to first argument \$month***\n…
91 foreach($inputs as $variation =>$month) {
93 var_dump( checkdate($month, $day, $year) );
102 *** Testing checkdate() : usage variation - unexpected values to first argument $month***
H A Ddate_period.phpt8 $di = DateInterval::createFromDateString( 'first day of next month' );
19 $di = DateInterval::createFromDateString( 'last thursday of next month' );
H A Dmktime_variation4.phpt2 Test mktime() function : usage variation - Passing unexpected values to forth argument $month.
5 … date("H") [, int $minute= date("i") [, int $second= date("s") [, int $month= date("n") [, int…
11 echo "*** Testing mktime() : usage variation - unexpected values to forth argument \$month***\n";
101 foreach($inputs as $variation =>$month) {
103 var_dump( mktime($hour, $minute, $second, $month) );
112 *** Testing mktime() : usage variation - unexpected values to forth argument $month***
H A Dbug35499.phpt18 ["month"]=>
54 ["month"]=>
H A Dbug50055.phpt9 $i = DateInterval::createFromDateString('third Tuesday of next month');
17 $i2 = DateInterval::createFromDateString('third Tuesday of last month');
H A Dgetdate_basic.phpt47 ["month"]=>
71 ["month"]=>
H A Dgmstrftime_variation17.phpt24 echo "\n-- Testing gmstrftime() function with Day of the month as decimal single digit format --\n";
34 -- Testing gmstrftime() function with Day of the month as decimal single digit format --
H A Dgmstrftime_variation18.phpt24 echo "\n-- Testing gmstrftime() function with Day of the month as decimal single digit format --\n";
34 -- Testing gmstrftime() function with Day of the month as decimal single digit format --
H A Dstrftime_variation17.phpt24 echo "\n-- Testing strftime() function with Day of the month as decimal single digit format --\n";
33 -- Testing strftime() function with Day of the month as decimal single digit format --
H A Dstrftime_variation18.phpt24 echo "\n-- Testing strftime() function with Day of the month as decimal single digit format --\n";
33 -- Testing strftime() function with Day of the month as decimal single digit format --
/PHP-5.6/ext/date/lib/
H A Dtm2unixtime.c68 timelib_sll month, year; in do_range_limit_days_relative() local
74 month = *base_m; in do_range_limit_days_relative()
81 dec_month(&year, &month); in do_range_limit_days_relative()
83 days = leapyear ? days_in_month_leap[month] : days_in_month[month]; in do_range_limit_days_relative()
93 days = leapyear ? days_in_month_leap[month] : days_in_month[month]; in do_range_limit_days_relative()
99 inc_month(&year, &month); in do_range_limit_days_relative()
357 static timelib_sll do_months(timelib_ull month, timelib_ull year) in do_months() argument
360 return ((month_tab_leap[month - 1] + 1) * SECS_PER_DAY); in do_months()
362 return ((month_tab[month - 1]) * SECS_PER_DAY); in do_months()
/PHP-5.6/ext/calendar/
H A Djewish.c689 int month, in JewishToSdn() argument
705 switch (month) { in JewishToSdn()
711 if (month == 1) { in JewishToSdn()
754 if (month == 4) { in JewishToSdn()
756 } else if (month == 5) { in JewishToSdn()
768 switch (month) { in JewishToSdn()
/PHP-5.6/ext/intl/dateformat/
H A Ddateformat_format.c105 month, in internal_get_timestamp() local
120 month = INTL_GET_ELEM(CALENDAR_MON); in internal_get_timestamp()
139 ucal_setDateTime(pcal, year, month, mday, hour, minute, second, &INTL_DATA_ERROR_CODE(dfo)); in internal_get_timestamp()

Completed in 29 milliseconds

12345