mirror of
https://github.com/php/php-src.git
synced 2024-12-04 07:14:10 +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.
29 lines
662 B
PHP
29 lines
662 B
PHP
--TEST--
|
|
IntlCalendar::getTime() 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('UTC');
|
|
$intlcal->clear();
|
|
$intlcal->set(IntlCalendar::FIELD_YEAR, 2012);
|
|
$intlcal->set(IntlCalendar::FIELD_MONTH, 1 /* Feb */);
|
|
$intlcal->set(IntlCalendar::FIELD_DAY_OF_MONTH, 29);
|
|
|
|
$time = strtotime('2012-02-29 00:00:00 +0000');
|
|
|
|
var_dump((float)$time*1000, $intlcal->getTime());
|
|
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
float(1330473600000)
|
|
float(1330473600000)
|
|
==DONE==
|