mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
--TEST--
|
|
IntlTimeZone::createTimeZoneIDEnumeration(): variant without region
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('intl'))
|
|
die('skip intl extension not enabled');
|
|
if (version_compare(INTL_ICU_VERSION, '4.8') < 0)
|
|
die('skip for ICU 4.8+');
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
$enum = IntlTimeZone::createTimeZoneIDEnumeration(
|
|
IntlTimeZone::TYPE_ANY);
|
|
$countAny = count(iterator_to_array($enum));
|
|
$enum = IntlTimeZone::createTimeZoneIDEnumeration(
|
|
IntlTimeZone::TYPE_CANONICAL);
|
|
$countCanonical = count(iterator_to_array($enum));
|
|
$enum = IntlTimeZone::createTimeZoneIDEnumeration(
|
|
IntlTimeZone::TYPE_CANONICAL_LOCATION);
|
|
$countCanonicalLocation = count(iterator_to_array($enum));
|
|
|
|
var_dump($countAny > $countCanonical);
|
|
var_dump($countCanonical > $countCanonicalLocation);
|
|
|
|
$enum = IntlTimeZone::createTimeZoneIDEnumeration(
|
|
IntlTimeZone::TYPE_ANY, null, null);
|
|
$countAny2 = count(iterator_to_array($enum));
|
|
var_dump($countAny == $countAny2);
|
|
|
|
$enum = IntlTimeZone::createTimeZoneIDEnumeration(
|
|
IntlTimeZone::TYPE_ANY, null, -3600000);
|
|
$values = iterator_to_array($enum);
|
|
|
|
print_r(
|
|
array_values(
|
|
array_intersect($values,
|
|
array('Etc/GMT+1', 'Atlantic/Azores'))
|
|
));
|
|
|
|
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|
|
bool(true)
|
|
Array
|
|
(
|
|
[0] => Atlantic/Azores
|
|
[1] => Etc/GMT+1
|
|
)
|
|
==DONE==
|