/php-src/ext/date/tests/ |
H A D | bug73489.phpt | 2 Bug #73489: wrong timestamp when call setTimeZone multi times with UTC offset 8 $datetime->setTimeZone(new DateTimeZone('-03:00')); 9 $datetime->setTimeZone(new DateTimeZone('-03:00')); 12 // example 2 - Timestamp keeps if you use getTimestamp() before second setTimeZone() calls 15 $datetime->setTimeZone(new DateTimeZone('-03:00')); 17 $datetime->setTimeZone(new DateTimeZone('-03:00'));
|
H A D | rfc-datetime_and_daylight_saving_time-type3-bd2.phpt | 25 $end->setTimeZone($tz); 31 $end->setTimeZone($tz); 37 $end->setTimeZone($tz); 43 $end->setTimeZone($tz); 49 $end->setTimeZone($tz);
|
H A D | bug45529.phpt | 11 $d->setTimeZone($tz1); 14 $d->setTimeZone($tz2);
|
H A D | rfc-datetime_and_daylight_saving_time-type3-bs.phpt | 18 $end->setTimeZone($tz); 43 $end->setTimeZone($tz); 50 $end->setTimeZone($tz); 63 $end->setTimeZone($tz);
|
H A D | bug74173.phpt | 7 $prg = $utc->setTimeZone(new \DateTimeZone('Europe/Prague'));
|
H A D | DateTime_getTimeZone_basic1.phpt | 17 $object->setTimeZone($la_time);
|
H A D | bug45543.phpt | 19 $d2->setTimeZone($tz);
|
H A D | bug48097.phpt | 12 $d->setTimeZone( new DateTimeZone( 'Europe/Budapest' ) );
|
H A D | DateTimeImmutable_uninitialised_exceptions.phpt | 38 check(fn() => $mdti->setTimeZone($dtz));
|
H A D | DateTime_uninitialised_exceptions.phpt | 40 check(fn() => $mdt->setTimeZone($dtz));
|
/php-src/ext/intl/tests/ |
H A D | calendar_setTimeZone_variation2.phpt | 2 IntlCalendar::setTimeZone(): different ways to specify time zone 12 $intlcal->setTimeZone('Europe/Paris'); 14 $intlcal->setTimeZone(new DateTimeZone('Europe/Madrid')); 18 $intlcal->setTimeZone($pstdate->getTimeZone()); 22 $intlcal->setTimeZone($offsetdate->getTimeZone());
|
H A D | dateformat_setTimeZone_error.phpt | 2 IntlDateFormatter::setTimeZone() bad args 13 var_dump($df->setTimeZone(array())); 14 var_dump($df->setTimeZone('non existing timezone')); 20 Warning: IntlDateFormatter::setTimeZone(): datefmt_set_timezone: No such time zone: 'Array' in %s o… 23 Warning: IntlDateFormatter::setTimeZone(): datefmt_set_timezone: No such time zone: 'non existing t…
|
H A D | calendar_setTimeZone_error2.phpt | 2 IntlCalendar::setTimeZone(): valid time zones for DateTime but not ICU 14 $intlcal->setTimeZone($pstdate->getTimeZone()); 18 $intlcal->setTimeZone($pstdate->getTimeZone()); 22 Warning: IntlCalendar::setTimeZone(): intlcal_set_time_zone: time zone id 'WEST' extracted from ext… 25 Warning: IntlCalendar::setTimeZone(): intlcal_set_time_zone: object has an time zone offset that's …
|
H A D | calendar_setTimeZone_error.phpt | 2 IntlCalendar::setTimeZone(): bad arguments 21 var_dump($c->setTimeZone($gmt, 2)); 26 var_dump($c->setTimeZone()); 43 error: 0, IntlCalendar::setTimeZone() expects exactly 1 argument, 2 given 45 error: 0, IntlCalendar::setTimeZone() expects exactly 1 argument, 0 given
|
H A D | dateformat_get_set_timezone_variant5.phpt | 2 IntlDateFormatter: get/setTimeZone() 25 $df->setTimeZone(NULL); 28 $df->setTimeZone('Europe/Madrid'); 31 $df->setTimeZone(IntlTimeZone::createTimeZone('Europe/Paris')); 34 $df->setTimeZone(new DateTimeZone('Europe/Amsterdam'));
|
H A D | calendar_setTimeZone_variation1.phpt | 2 IntlCalendar::setTimeZone() variation with NULL arg 16 $intlcal->setTimeZone(null);
|
H A D | calendar_setTimeZone_basic.phpt | 2 IntlCalendar::setTimeZone() basic test 15 $intlcal->setTimeZone(IntlTimeZone::getGMT());
|
H A D | gh13766.phpt | 8 $oIntlDateFormatter->setTimeZone('Europe/Berlin');
|
H A D | dateformat_set_timezone_id_icu72-1.phpt | 61 Warning: IntlDateFormatter::setTimeZone(): datefmt_set_timezone: No such time zone: 'CN' in %sut_co…
|
H A D | dateformat_set_timezone_id3.phpt | 61 Warning: IntlDateFormatter::setTimeZone(): datefmt_set_timezone: No such time zone: 'CN' in %sut_co…
|
H A D | ut_common.inc | 370 …return $GLOBALS['oo-mode'] ? $fmt->setTimeZone( $timezone_id ) : datefmt_set_timezone( $fmt ,$time…
|
/php-src/ext/intl/dateformat/ |
H A D | dateformat.stub.php | 108 public function setTimeZone($timezone): bool {} function in IntlDateFormatter
|
/php-src/ext/intl/calendar/ |
H A D | calendar.stub.php | 362 public function setTimeZone($timezone): bool {} function in IntlCalendar
|