/PHP-7.3/ext/date/tests/ |
H A D | bug65672.phpt | 13 var_dump($period->extra); 14 $period->extra = "modified"; 15 var_dump($period->extra); 18 $period->extra = []; 19 $period->extra[] = "array"; 20 var_dump($period->extra); 23 $period->dynamic1 = "dynamic"; 24 var_dump($period->dynamic1); 27 $period->dynamic2 = []; 28 $period->dynamic2[] = "array"; [all …]
|
H A D | DatePeriod_properties1.phpt | 11 $period = new DatePeriod($start, $interval, $end); 14 var_dump($period->recurrences); 17 var_dump($period->include_start_date); 20 var_dump($period->start == $start); 23 var_dump($period->current); 26 var_dump($period->end == $end); 29 var_dump($period->interval->format("%R%d"));
|
H A D | DatePeriod_getter.phpt | 10 $period = new DatePeriod($start, $interval, $end); 13 var_dump($period->getStartDate()->format('Y-m-d H:i:s')); 14 var_dump($period->getStartDate()->getTimeZone()->getName()); 16 var_dump($period->getEndDate()->format('Y-m-d H:i:s')); 17 var_dump($period->getEndDate()->getTimeZone()->getName()); 19 var_dump($period->getDateInterval()->format('%R%y-%m-%d-%h-%i-%s')); 20 var_dump($period->getRecurrences());
|
H A D | bug74639.phpt | 10 $period = new DatePeriod($start, $interval, $end); 11 $clonedPeriod = clone $period; 14 if ($period->getStartDate() != $clonedPeriod->getStartDate()) { 18 if ($period->getEndDate() != $clonedPeriod->getEndDate()) { 22 if ($period->getDateInterval() != $clonedPeriod->getDateInterval()) {
|
H A D | bug71635.phpt | 6 $period = new DatePeriod(new DateTimeImmutable("now"), new DateInterval("P2Y4DT6H8M"), 2); 8 var_dump($period->getEndDate());
|
H A D | DatePeriod_properties2.phpt | 8 $period = new DatePeriod(new DateTime, new DateInterval('P1D'), new DateTime); 21 $period->$property = "new"; 27 $period->$property[] = "extra";
|
H A D | date_create-relative.phpt | 23 // around 1 leap year period in years
|
H A D | DateTime_data-fall-type2-type2.inc | 16 * + redodt: daylight time in the redo period 2010-11-07 01:12:33 EDT 17 * + redost: standard time in the redo period 2010-11-07 01:14:44 EST
|
H A D | DateTime_data-fall-type2-type3.inc | 16 * + redodt: daylight time in the redo period 2010-11-07 01:12:33 EDT 17 * + redost: standard time in the redo period 2010-11-07 01:14:44 EST
|
H A D | DateTime_data-fall-type3-type2.inc | 16 * + redodt: daylight time in the redo period 2010-11-07 01:12:33 EDT 17 * + redost: standard time in the redo period 2010-11-07 01:14:44 EST
|
H A D | DateTime_data-fall-type3-type3.inc | 16 * + redodt: daylight time in the redo period 2010-11-07 01:12:33 EDT, + TZ 17 * + redost: standard time in the redo period 2010-11-07 01:14:44 EST, + TZ
|
/PHP-7.3/ext/date/lib/ |
H A D | parse_iso_intervals.re | 79 timelib_rel_time *period; 241 period 267 s->period->i = nr; 269 s->period->m = nr; 397 in.period->y = 0; 398 in.period->d = 0; 399 in.period->m = 0; 400 in.period->h = 0; 401 in.period->i = 0; 402 in.period->s = 0; [all …]
|
H A D | parse_iso_intervals.c | 81 timelib_rel_time *period; member 316 s->period->i = nr; in scan() 318 s->period->m = nr; in scan() 1039 in.period->y = 0; in timelib_strtointerval() 1040 in.period->d = 0; in timelib_strtointerval() 1041 in.period->m = 0; in timelib_strtointerval() 1042 in.period->h = 0; in timelib_strtointerval() 1043 in.period->i = 0; in timelib_strtointerval() 1044 in.period->s = 0; in timelib_strtointerval() 1045 in.period->weekday = 0; in timelib_strtointerval() [all …]
|
H A D | timelib.h | 571 timelib_rel_time **period, int *recurrences,
|
/PHP-7.3/ext/standard/tests/serialize/ |
H A D | bug62373.phpt | 11 $period = $size_of_ce << 5; 12 for ($i = 0; $i < $period * 3; $i++) {
|
/PHP-7.3/ext/standard/ |
H A D | user_filters.c | 281 char *period; in user_filter_factory_create() local 288 if ((period = strrchr(filtername, '.'))) { in user_filter_factory_create() 293 period = wildcard + (period - filtername); in user_filter_factory_create() 294 while (period) { in user_filter_factory_create() 295 *period = '\0'; in user_filter_factory_create() 298 period = NULL; in user_filter_factory_create() 300 *period = '\0'; in user_filter_factory_create() 301 period = strrchr(wildcard, '.'); in user_filter_factory_create()
|
/PHP-7.3/main/streams/ |
H A D | filter.c | 228 char *period; in php_stream_filter_create() local 234 } else if ((period = strrchr(filtername, '.'))) { in php_stream_filter_create() 240 period = wildname + (period - filtername); in php_stream_filter_create() 241 while (period && !filter) { in php_stream_filter_create() 242 *period = '\0'; in php_stream_filter_create() 248 *period = '\0'; in php_stream_filter_create() 249 period = strrchr(wildname, '.'); in php_stream_filter_create()
|
/PHP-7.3/ext/standard/tests/strings/ |
H A D | get_html_translation_table_basic6.phpt | 69 [.] => .
|
H A D | get_html_translation_table_basic5.phpt | 1204 [.] => .
|
H A D | html_entity_decode_html5.phpt | 1605 ".", 3739 . => . 2e
|
/PHP-7.3/ext/mysqli/tests/ |
H A D | mysqli_poll_kill.phpt | 31 // Sleep 0.1s - the asynchronous query should have been processed after the wait period
|
/PHP-7.3/sapi/litespeed/ |
H A D | README.md | 181 can not finish processing of a request in the given time period, it
|
/PHP-7.3/ext/opcache/ |
H A D | README | 182 be a problem with a process. After this time period has passed, the
|
/PHP-7.3/ext/standard/html_tables/ |
H A D | ents_html5.txt | 1600 period 0002E
|
/PHP-7.3/ |
H A D | README.REDIST.BINS | 218 The period, 2^19937-1, and the order of equidistribution, 623 dimensions,
|