summaryrefslogtreecommitdiff
path: root/ext/intl/tests/timezone_getRegion_basic.phpt
blob: 1a41ae8d583bc6c2611dae1e237de8110ea18aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
IntlTimeZone::getRegion(): basic test
--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);
print_R(IntlTimeZone::getRegion('Europe/Amsterdam'));
echo "\n";
print_R(intltz_get_region('Europe/Amsterdam'));
echo "\n";
?>
==DONE==
--EXPECT--
NL
NL
==DONE==