Home
last modified time | relevance | path

Searched refs:day (Results 26 – 50 of 124) sorted by relevance

12345

/PHP-7.4/ext/date/tests/
H A Dbug35630.phpt7 echo date(DATE_ISO8601, strtotime('5 january 2006+3day+1day')) . "\n";
H A Dgmmktime_basic.phpt5 /* 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 Dbug78751.phpt6 $oDateInterval = DateInterval::createFromDateString('1 day');
7 $oDays = new DatePeriod($oDay, $oDateInterval, $oDay->modify('+1 day'));
H A Dbug32086.phpt9 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 Ddate-parse-by-format001.phpt14 [day] => 8
35 [day] => 8
H A Dbug67109.phpt7 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 Dbug51994.phpt5 $trans_date = '10153'; // 152nd day of year 2010 -> 03.06.2010
15 ["day"]=>
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_sunrise_variation8.phpt2 …) 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 Ddate_sunset_variation8.phpt2 …) 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 Ddate_parse_basic1.phpt28 ["day"]=>
56 ["day"]=>
84 ["day"]=>
H A DDateTime_compare_basic1.phpt36 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 Dgmdate_variation3.phpt2 Test gmdate() function : usage variation - Passing numeric representation of day formats.
23 'Numeric representation of day' => 'w',
52 --Numeric representation of day--
H A Dbug54340.phpt9 $dt = new DateTime('first day of January 2011');
15 $dt = new DateTime('first day of January 2011');
H A Ddate_interval_create_from_date_string.phpt7 $string = '1 day'; //P1D
23 $string = '1 year + 1 day';
H A DDateTime_data-spring-type2-type3.inc14 * + 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 DDateTime_data-spring-type3-type2.inc14 * + 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 DDateTime_data-spring-type3-type3.inc14 * + 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 Dbug32555.phpt14 print strftime('%c %Z',strtotime('+1 day',$stamp)) ."\n";
15 print strftime('%c %Z',strtotime('+2 day',$stamp)) ."\n";
H A Dbug62561.phpt12 echo 'day from ts: '.$dayFromTs->format('Y-m-d H:i:s')."\n";
16 day from ts: 2012-07-02 04:00:00
H A Dmktime_error.phpt5 …e= date("i") [, int $second= date("s") [, int $month= date("n") [, int $day= date("j") [, int …
24 $day = 2;
27 var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $extra_arg) );
H A DDateTime_data-spring-type2-type2.inc14 * + 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 Dbug69336.phpt2 Bug #69336 (Issues with "last day of <monthname>")
7 var_dump(date('d.m.Y',strtotime('last day of april')));
/PHP-7.4/ext/calendar/
H A Dgregor.c146 int day; in SdnToGregorian() local
167 day = (temp % DAYS_PER_5_MONTHS) / 5 + 1; in SdnToGregorian()
184 *pDay = day; in SdnToGregorian()
H A Djulian.c163 int day; in SdnToJulian() local
189 day = (temp % DAYS_PER_5_MONTHS) / 5 + 1; in SdnToJulian()
206 *pDay = day; in SdnToJulian()

Completed in 45 milliseconds

12345