Home
last modified time | relevance | path

Searched refs:DatePeriod (Results 1 – 23 of 23) sorted by relevance

/PHP-7.4/ext/date/tests/
H A DDatePeriod_properties2.phpt2 DatePeriod: Test cannot modify read only properties
35 Writing to DatePeriod->recurrences is unsupported
37 Writing to DatePeriod->include_start_date is unsupported
39 Writing to DatePeriod->start is unsupported
40 Retrieval of DatePeriod->start for modification is unsupported
41 Writing to DatePeriod->current is unsupported
42 Retrieval of DatePeriod->current for modification is unsupported
43 Writing to DatePeriod->end is unsupported
44 Retrieval of DatePeriod->end for modification is unsupported
45 Writing to DatePeriod->interval is unsupported
[all …]
H A DDatePeriod_wrong_recurrence_on_constructor.phpt2 DatePeriod: Test wrong recurrence parameter on __construct
6 new DatePeriod(new DateTime('yesterday'), new DateInterval('P1D'), 0);
12 new DatePeriod(new DateTime('yesterday'), new DateInterval('P1D'),-1);
18 DatePeriod::__construct(): The recurrence count '0' is invalid. Needs to be > 0
19 DatePeriod::__construct(): The recurrence count '-1' is invalid. Needs to be > 0
H A Dbug53437_var1.phpt2 Bug #53437 (Crash when using unserialized DatePeriod instance), variation 2
5 $s = 'O:10:"DatePeriod":0:{}';
13 Fatal error: Uncaught Error: Invalid serialization data for DatePeriod object in %sbug53437_var1.ph…
15 #0 [internal function]: DatePeriod->__wakeup()
H A DDatePeriod_wrong_constructor.phpt2 DatePeriod: Test wrong __construct parameter
10 new DatePeriod();
13 Fatal error: Uncaught Exception: DatePeriod::__construct(): This constructor accepts either (DateTi…
15 #0 %s(%d): DatePeriod->__construct()
H A Dbug54283.phpt2 Bug #54283 (new DatePeriod(NULL) causes crash)
7 var_dump(new DatePeriod(NULL));
14 string(51) "DatePeriod::__construct(): Unknown or bad format ()"
H A Dbug44562.phpt2 Bug #44562 (Creating instance of DatePeriod crashes)
9 $dp = new DatePeriod('2D');
19 $dp = new DatePeriod( $begin, $interval, 10 );
27 DatePeriod::__construct(): Unknown or bad format (2D)
H A DDatePeriod_getter.phpt2 DatePeriod: Test getter
10 $period = new DatePeriod($start, $interval, $end);
22 $periodWithRecurrences = new DatePeriod($start, $interval, $recurrences);
27 $periodWithRecurrencesWithoutStart = new DatePeriod($start, $interval, $recurrences, DatePeriod::EX…
H A Ddate_period.phpt2 DatePeriod
10 foreach ( new DatePeriod( $db, $di, $de ) as $dt )
21 foreach ( new DatePeriod( $db, $di, $de, DatePeriod::EXCLUDE_START_DATE ) as $dt )
H A Dbug71635.phpt2 Bug #71635 (segfault in DatePeriod::getEndDate() when no end date has been set)
6 $period = new DatePeriod(new DateTimeImmutable("now"), new DateInterval("P2Y4DT6H8M"), 2);
H A Dbug53437.phpt2 Bug #53437 (Crash when using unserialized DatePeriod instance), variation 1
5 $dp = new DatePeriod(new DateTime('2010-01-01 UTC'), new DateInterval('P1D'), 2);
14 $ser = serialize($dp); // $ser is: O:10:"DatePeriod":0:{}
32 object(DatePeriod)#%d (6) {
93 object(DatePeriod)#%d (6) {
H A Dbug78751.phpt2 Bug #78751 (Serialising DatePeriod converts DateTimeImmutable)
7 $oDays = new DatePeriod($oDay, $oDateInterval, $oDay->modify('+1 day'));
H A DDatePeriod_set_state.phpt2 Test __set_state magic method for recreating a DatePeriod object
8 $datePeriodObject = new DatePeriod(
22 object(DatePeriod)#%d (6) {
H A Ddate_period-immutable.phpt2 DatePeriod
11 foreach ( new DatePeriod( $db1, $di, $de ) as $dt )
19 foreach ( new DatePeriod( $db2, $di, $de ) as $dt )
H A Dbug75002.phpt6 class aaa extends DatePeriod {
19 Fatal error: Uncaught Error: DatePeriod has not been initialized correctly in %sbug75002.php:%d
H A Dbug46874.phpt2 Bug #46874 (DatePeriod not resetting after foreach loop)
5 $dp = new DatePeriod('R5/2008-03-01T13:00:00Z/P1Y2M10DT2H30M');
H A Dbug52113.phpt2 Bug #52113 (Seg fault while creating (by unserialization) DatePeriod)
10 $p = new DatePeriod($start, $diff, 2);
16 $p = new DatePeriod($start, $diff_un, 2);
31 $p = new DatePeriod($start, $diff_un, 2);
122 object(DatePeriod)#%d (6) {
210 object(DatePeriod)#%d (6) {
H A Dbug74639.phpt2 Bug #74639 Cloning DatePeriod leads to segfault
10 $period = new DatePeriod($start, $interval, $end);
H A DDatePeriod_properties1.phpt2 DatePeriod: Test read only properties
11 $period = new DatePeriod($start, $interval, $end);
H A Dbug65672.phpt2 Test for bug #65672: Broken classes inherited from DatePeriod
9 $period = new class(new DateTime, $interval, new DateTime) extends DatePeriod {
H A Dbug52668.phpt9 $dp = new DatePeriod($start, $interval, 1);
/PHP-7.4/ext/date/
H A Dphp_date.h104 PHP_METHOD(DatePeriod, __construct);
105 PHP_METHOD(DatePeriod, __wakeup);
106 PHP_METHOD(DatePeriod, __set_state);
107 PHP_METHOD(DatePeriod, getStartDate);
108 PHP_METHOD(DatePeriod, getEndDate);
109 PHP_METHOD(DatePeriod, getDateInterval);
110 PHP_METHOD(DatePeriod, getRecurrences);
H A Dphp_date.c561 PHP_ME(DatePeriod, __wakeup, NULL, ZEND_ACC_PUBLIC)
563 PHP_ME(DatePeriod, getStartDate, NULL, ZEND_ACC_PUBLIC)
564 PHP_ME(DatePeriod, getEndDate, NULL, ZEND_ACC_PUBLIC)
565 PHP_ME(DatePeriod, getDateInterval, NULL, ZEND_ACC_PUBLIC)
4676 PHP_METHOD(DatePeriod, __construct) in PHP_METHOD() argument
4767 PHP_METHOD(DatePeriod, getStartDate) in PHP_METHOD() argument
4794 PHP_METHOD(DatePeriod, getEndDate) in PHP_METHOD() argument
4825 PHP_METHOD(DatePeriod, getDateInterval) in PHP_METHOD() argument
4846 PHP_METHOD(DatePeriod, getRecurrences) in PHP_METHOD() argument
5375 PHP_METHOD(DatePeriod, __set_state) in PHP_METHOD() argument
[all …]
/PHP-7.4/
H A DNEWS1421 . Fixed bug #78751 (Serialising DatePeriod converts DateTimeImmutable). (cmb)
1741 . Fixed bug #78751 (Serialising DatePeriod converts DateTimeImmutable). (cmb)
2025 . Fixed bug #77909 (DatePeriod::__construct() with invalid recurrence count

Completed in 39 milliseconds