blob: 7aa88d655a5f6d44b9da18b89212eedd4831f131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--TEST--
IntlTimeZone::getRegion(): basic test
--SKIPIF--
<?php
if (!extension_loaded('intl'))
die('skip intl extension not enabled');
--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";
?>
--EXPECT--
NL
NL
|