Home
last modified time | relevance | path

Searched refs:month (Results 76 – 100 of 113) sorted by relevance

12345

/PHP-5.6/ext/date/tests/
H A Dcheckdate_variation2.phpt5 /* Prototype : bool checkdate ( int $month , int $day , int $year )
88 $month = 7;
93 var_dump( checkdate($month, $day, $year) );
H A Dcheckdate_variation3.phpt5 /* Prototype : bool checkdate ( int $month , int $day , int $year )
89 $month = 7;
93 var_dump( checkdate($month, $day, $year) );
H A Dmktime_variation5.phpt5 … date("H") [, int $minute= date("i") [, int $second= date("s") [, int $month= date("n") [, int…
100 $month = 7;
104 var_dump( mktime($hour, $minute, $second, $month, $day) );
H A Dmktime_variation6.phpt5 … date("H") [, int $minute= date("i") [, int $second= date("s") [, int $month= date("n") [, int…
100 $month = 7;
105 var_dump( mktime($hour, $minute, $second, $month, $day, $year) );
H A Ddate_period-immutable.phpt9 $di = DateInterval::createFromDateString( 'first day of next month' );
H A DDateTime_setISODate_basic1.phpt19 // Which month is week 40 ?
H A Ddate_isodate_set_basic1.phpt19 // Which month is week 40 ?
H A DDateTime_format_basic1.phpt38 string(19) "22:07:41 m is month"
H A Dcheckdate_basic1.phpt5 /* Prototype : bool checkdate ( int $month , int $day , int $year )
H A Ddate_basic1.phpt38 string(19) "10:02:30 m is month"
H A Ddate_format_basic1.phpt38 string(19) "22:07:41 m is month"
H A DDateTime_setDate_variation1.phpt5 /* Prototype : public DateTime DateTime::setDate ( int $year , int $month , int $day )
100 $month = 7;
104 var_dump( $object->setDate($year, $month, $day) );
H A DDateTime_setDate_variation3.phpt5 /* Prototype : public DateTime DateTime::setDate ( int $year , int $month , int $day )
99 $month = 7;
104 var_dump( $object->setDate($year, $month, $day) );
H A Ddate_date_set_variation2.phpt5 /* Prototype : DateTime date_date_set ( DateTime $object , int $year , int $month , int $day )
100 $month = 7;
104 var_dump( date_date_set($object, $year, $month, $day) );
H A Ddate_date_set_variation4.phpt5 /* Prototype : DateTime date_date_set ( DateTime $object , int $year , int $month , int $day )
99 $month = 7;
104 var_dump( date_date_set($object, $year, $month, $day) );
H A Dmktime_variation7.phpt5 … date("H") [, int $minute= date("i") [, int $second= date("s") [, int $month= date("n") [, int…
102 $month = 7;
108 var_dump( mktime($hour, $minute, $second, $month, $day, $year, $is_dst) );
H A Dcheckdate_error.phpt5 /* Prototype : bool checkdate ( int $month , int $day , int $year )
H A Ddate_date_set_variation1.phpt5 /* Prototype : DateTime date_date_set ( DateTime $object , int $year , int $month , int $day )
99 $month = 7;
104 var_dump( date_date_set($object, $year, $month, $day) );
H A Ddate_parse_error.phpt46 ["month"]=>
H A Dmktime_variation1.phpt5 … date("H") [, int $minute= date("i") [, int $second= date("s") [, int $month= date("n") [, int…
100 $month = 7;
H A DDateTime_setISODate_variation1.phpt100 $month = 7;
104 var_dump( $object->setISODate($year, $month, $day) );
H A DDateTime_setISODate_variation2.phpt102 foreach($inputs as $variation =>$month) {
104 var_dump( $object->setISODate($year, $month, $day) );
/PHP-5.6/ext/oci8/tests/
H A Dbug42173.phpt35 interval'1-2' year to month,
36 interval'10-4' year to month,
/PHP-5.6/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c44 unsigned int year, month, day, hour, minute, second; member
232 t.year = t.month= 0; in ps_fetch_time()
273 t.month = (unsigned int) to[2]; in ps_fetch_date()
282 length = mnd_sprintf(&value, 0, "%04u-%02u-%02u", t.year, t.month, t.day); in ps_fetch_date()
308 t.month = (unsigned int) to[2]; in ps_fetch_datetime()
326 …length = mnd_sprintf(&value, 0, "%04u-%02u-%02u %02u:%02u:%02u", t.year, t.month, t.day, t.hour, t… in ps_fetch_datetime()
/PHP-5.6/ext/date/lib/
H A Dparse_date.re211 { "month", TIMELIB_MONTH, 1 },
258 /* The month table. */
846 month = "0"? [0-9] | "1"[0-2];
888 americanshort = month "/" day;
889 american = month "/" day "/" year;
891 dateslash = year4 "/" month "/" day;
894 gnudateshorter = year4 "-" month;
895 gnudateshort = year "-" month "-" day;
897 pointeddate2 = day [.\t] month "." year2;
1930 case 'M': /* three letter month */
[all …]

Completed in 57 milliseconds

12345