summaryrefslogtreecommitdiff
path: root/ext/intl/tests/timezone_createTimeZoneIDEnumeration_basic.phpt
blob: 4bcc12f26ca5ea91ccab25ccdd3cfc6ea7f176d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
--TEST--
IntlTimeZone::createTimeZoneIDEnumeration(): basic test
--SKIPIF--
<?php
if (!extension_loaded('intl'))
	die('skip intl extension not enabled');
--FILE--
<?php
ini_set("intl.error_level", E_WARNING);
$enum = IntlTimeZone::createTimeZoneIDEnumeration(
	IntlTimeZone::TYPE_ANY,
	'PT',
	-3600000);
print_r(iterator_to_array($enum));

$enum = intltz_create_time_zone_id_enumeration(
	IntlTimeZone::TYPE_ANY,
	'PT',
	-3600000);
print_r(iterator_to_array($enum));
?>
==DONE==
--EXPECT--
Array
(
    [0] => Atlantic/Azores
)
Array
(
    [0] => Atlantic/Azores
)
==DONE==