/PHP-5.5/ext/date/tests/ |
H A D | gmmktime_error.phpt | 5 /* Prototype : int gmmktime([int hour [, int min [, int sec [, int mon [, int day [, int year]]]]]… 19 $day = 8; 24 var_dump( gmmktime($hour, $min, $sec, $mon, $day, $year, $extra_arg1) ); 26 var_dump( gmmktime($hour, $min, $sec, $mon, $day, $year, $extra_arg1, $extra_arg2) );
|
H A D | bug35630.phpt | 7 echo date(DATE_ISO8601, strtotime('5 january 2006+3day+1day')) . "\n";
|
H A D | gmmktime_basic.phpt | 5 /* Prototype : int gmmktime([int hour [, int min [, int sec [, int mon [, int day [, int year]]]]]… 18 $day = 8; 22 var_dump( gmmktime($hour, $min, $sec, $mon, $day, $year) );
|
H A D | bug32086.phpt | 9 echo $i = strtotime("2004-11-01 +1 day"), "\n"; 10 echo $j = strtotime("+1 day", $g), "\n"; 20 echo $i = strtotime("2005-02-19 +1 day"), "\n"; 21 echo $j = strtotime("+1 day", $g), "\n";
|
H A D | DateTime_setISODate_error.phpt | 6 /* Prototype : public DateTime DateTime::setISODate ( int $year , int $week [, int $day ] ) 7 …* Description: Set a date according to the ISO 8601 standard - using weeks and day offsets rather … 28 $day = 7; 30 var_dump( $datetime->setISODate($year, $week, $day, $extra_arg) );
|
H A D | date_sunrise_variation8.phpt | 2 …) function : usage variation - Checking with North and South poles when Sun is up and down all day 6 * Description: Returns time of sunrise for a given day and location 17 //Date at which Sun is up all day at North Pole 21 //Date at which Sun is up all day at South Pole
|
H A D | date_sunset_variation8.phpt | 2 …) function : usage variation - Checking with North and South poles when Sun is up and down all day 6 * Description: Returns time of sunrise for a given day and location 17 //Date at which Sun is up all day at North Pole 21 //Date at which Sun is up all day at South Pole
|
H A D | date-parse-by-format001.phpt | 14 [day] => 8 35 [day] => 8
|
H A D | bug30096.phpt | 21 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 D | bug67109.phpt | 7 var_dump(date('d.m.Y',strtotime('last day of april'))); 8 var_dump(date('d.m.Y',strtotime('Last day of april')));
|
H A D | bug51994.phpt | 5 $trans_date = '10153'; // 152nd day of year 2010 -> 03.06.2010 15 ["day"]=>
|
H A D | date_parse_basic1.phpt | 28 ["day"]=> 56 ["day"]=> 84 ["day"]=>
|
H A D | DateTime_compare_basic1.phpt | 36 date_modify($obj1, "+1 day"); 45 date_modify($obj2, "+1 day"); 46 date_modify($obj3, "+1 day"); 47 date_modify($obj4, "+1 day");
|
H A D | DateTime_data-spring-type3-type3.inc | 14 * + prev: the day before the transition day 2010-03-13 18:38:28 15 * + st: standard time on transition day 2010-03-14 00:10:20 16 * + dt: daylight time on the transition day 2010-03-14 03:16:55 17 * + post: the day after the transition day 2010-03-15 19:59:59
|
H A D | DateTime_data-spring-type2-type3.inc | 14 * + prev: the day before the transition day 2010-03-13 18:38:28 EST 15 * + st: standard time on transition day 2010-03-14 00:10:20 EST 16 * + dt: daylight time on the transition day 2010-03-14 03:16:55 EDT 17 * + post: the day after the transition day 2010-03-15 19:59:59 EDT
|
H A D | DateTime_data-spring-type3-type2.inc | 14 * + prev: the day before the transition day 2010-03-13 18:38:28 EST 15 * + st: standard time on transition day 2010-03-14 00:10:20 EST 16 * + dt: daylight time on the transition day 2010-03-14 03:16:55 EDT 17 * + post: the day after the transition day 2010-03-15 19:59:59 EDT
|
H A D | gmdate_variation3.phpt | 2 Test gmdate() function : usage variation - Passing numeric representation of day formats. 23 'Numeric representation of day' => 'w', 52 --Numeric representation of day--
|
H A D | mktime_error.phpt | 5 …e= date("i") [, int $second= date("s") [, int $month= date("n") [, int $day= date("j") [, int … 25 $day = 2; 29 var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $is_dst, $extra_arg) );
|
H A D | DateTime_data-spring-type2-type2.inc | 14 * + prev: the day before the transition day 2010-03-13 18:38:28 EST 15 * + st: standard time on transition day 2010-03-14 00:10:20 EST 16 * + dt: daylight time on the transition day 2010-03-14 03:16:55 EDT 17 * + post: the day after the transition day 2010-03-15 19:59:59 EDT
|
H A D | bug54340.phpt | 9 $dt = new DateTime('first day of January 2011'); 15 $dt = new DateTime('first day of January 2011');
|
H A D | date_interval_create_from_date_string.phpt | 7 $string = '1 day'; //P1D 23 $string = '1 year + 1 day';
|
H A D | bug32555.phpt | 14 print strftime('%c %Z',strtotime('+1 day',$stamp)) ."\n"; 15 print strftime('%c %Z',strtotime('+2 day',$stamp)) ."\n";
|
H A D | bug62561.phpt | 12 echo 'day from ts: '.$dayFromTs->format('Y-m-d H:i:s')."\n"; 16 day from ts: 2012-07-02 04:00:00
|
/PHP-5.5/ext/calendar/ |
H A D | julian.c | 163 int day; in SdnToJulian() local 189 day = (temp % DAYS_PER_5_MONTHS) / 5 + 1; in SdnToJulian() 206 *pDay = day; in SdnToJulian()
|
H A D | gregor.c | 146 int day; in SdnToGregorian() local 167 day = (temp % DAYS_PER_5_MONTHS) / 5 + 1; in SdnToGregorian() 184 *pDay = day; in SdnToGregorian()
|