Home
last modified time | relevance | path

Searched refs:recurrences (Results 1 – 12 of 12) sorted by relevance

/PHP-8.0/ext/date/tests/
H A Dbug78055.phpt2 Bug #78055 (DatePeriod's getRecurrences and ->recurrences don't match)
8 $recurrences = 5;
10 $period = new DatePeriod($start, $interval, $recurrences, DatePeriod::EXCLUDE_START_DATE);
11 echo $period->getRecurrences(), " ", $period->recurrences, "\n";
13 $period = new DatePeriod($start, $interval, $recurrences);
14 echo $period->getRecurrences(), " ", $period->recurrences, "\n";
17 echo $period->getRecurrences(), " ", $period->recurrences, "\n";
20 echo $period->getRecurrences(), " ", $period->recurrences, "\n";
H A DDatePeriod_properties1.phpt13 echo "recurrences: ";
14 var_dump($period->recurrences);
32 recurrences: int(1)
H A DDatePeriod_getter.phpt11 $recurrences = 4;
22 $periodWithRecurrences = new DatePeriod($start, $interval, $recurrences);
27 $periodWithRecurrencesWithoutStart = new DatePeriod($start, $interval, $recurrences, DatePeriod::EX…
H A DDatePeriod_properties2.phpt11 "recurrences",
35 Writing to DatePeriod->recurrences is unsupported
36 Retrieval of DatePeriod->recurrences for modification is unsupported
H A Dbug53437.phpt87 ["recurrences"]=>
148 ["recurrences"]=>
H A DDatePeriod_set_state.phpt71 ["recurrences"]=>
H A Dbug52113.phpt171 ["recurrences"]=>
259 ["recurrences"]=>
/PHP-8.0/ext/date/lib/
H A Dparse_iso_intervals.re80 int recurrences;
199 recurrences = "R" number;
208 recurrences
210 DEBUG_OUTPUT("recurrences");
213 s->recurrences = timelib_get_unsigned_nr(&ptr, 9);
331 timelib_rel_time **period, int *recurrences,
410 in.recurrences = 1;
441 *recurrences = in.recurrences;
H A Dparse_iso_intervals.c82 int recurrences; member
918 s->recurrences = timelib_get_unsigned_nr(&ptr, 9); in scan()
936 timelib_rel_time **period, int *recurrences, in timelib_strtointerval() argument
1015 in.recurrences = 1; in timelib_strtointerval()
1046 *recurrences = in.recurrences; in timelib_strtointerval()
H A Dtimelib.h572 timelib_rel_time **period, int *recurrences,
/PHP-8.0/ext/date/
H A Dphp_date.h87 int recurrences; member
H A Dphp_date.c1473 return (iterator->current_index < object->recurrences) ? SUCCESS : FAILURE; in date_period_it_has_more()
2135 new_obj->recurrences = old_obj->recurrences; in date_object_clone_period()
4181 *recurrences = r; in date_period_initialize()
4194 zend_long recurrences = 0, options = 0; in PHP_METHOD() local
4232 if (dpobj->end == NULL && recurrences == 0) { in PHP_METHOD()
4274 if (dpobj->end == NULL && recurrences < 1) { in PHP_METHOD()
4285 dpobj->recurrences = recurrences + dpobj->include_start_date; in PHP_METHOD()
4369 if (0 == dpobj->recurrences - dpobj->include_start_date) { in PHP_METHOD()
4373 RETURN_LONG(dpobj->recurrences - dpobj->include_start_date); in PHP_METHOD()
4801 ZVAL_LONG(&zv, (zend_long) period_obj->recurrences); in date_object_get_properties_period()
[all …]

Completed in 49 milliseconds