mirror of
https://github.com/php/php-src.git
synced 2024-12-01 22:03:36 +08:00
d32ac3efc8
Added date.timezone=Atlantic/Azores to all tests that were failing because of ext/date warning about a timezone not having been set.
24 lines
574 B
PHP
24 lines
574 B
PHP
--TEST--
|
|
IntlCalendar::inDaylightTime() basic test
|
|
--INI--
|
|
date.timezone=Atlantic/Azores
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('intl'))
|
|
die('skip intl extension not enabled');
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
ini_set("intl.default_locale", "nl");
|
|
|
|
$intlcal = IntlCalendar::createInstance('Europe/Amsterdam');
|
|
$intlcal->setTime(strtotime('2012-01-01') * 1000);
|
|
var_dump($intlcal->inDaylightTime());
|
|
$intlcal->setTime(strtotime('2012-04-01') * 1000);
|
|
var_dump(intlcal_in_daylight_time($intlcal));
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
bool(false)
|
|
bool(true)
|
|
==DONE==
|