1--TEST--
2IntlTimeZone::getIDForWindowsID basic test
3--EXTENSIONS--
4intl
5--SKIPIF--
6<?php if (version_compare(INTL_ICU_VERSION, '52') < 0)die('skip for ICU >= 52'); ?>
7<?php if (version_compare(INTL_ICU_VERSION, '58.1') >= 0) die('skip for ICU <= 57.1'); ?>
8--FILE--
9<?php
10
11$tzs = array(
12  'Gnomeregan' => array(NULL),
13  'India Standard Time' => array(NULL),
14  'Pacific Standard Time' => array('001', 'CA', 'MX', 'US', 'ZZ'),
15  'Romance Standard Time' => array('001', 'BE', 'DK', 'ES', 'FR'),
16);
17
18foreach ($tzs as $tz => $regions) {
19  echo "** $tz\n";
20  foreach ($regions as $region) {
21    var_dump(IntlTimeZone::getIDForWindowsID($tz, $region));
22    if (intl_get_error_code() != U_ZERO_ERROR) {
23      echo "Error: ", intl_get_error_message(), "\n";
24    }
25  }
26}
27?>
28--EXPECT--
29** Gnomeregan
30bool(false)
31Error: intltz_get_windows_id: Unknown windows timezone: U_ILLEGAL_ARGUMENT_ERROR
32** India Standard Time
33string(13) "Asia/Calcutta"
34** Pacific Standard Time
35string(19) "America/Los_Angeles"
36string(17) "America/Vancouver"
37string(15) "America/Tijuana"
38string(19) "America/Los_Angeles"
39string(7) "PST8PDT"
40** Romance Standard Time
41string(12) "Europe/Paris"
42string(15) "Europe/Brussels"
43string(17) "Europe/Copenhagen"
44string(13) "Europe/Madrid"
45string(12) "Europe/Paris"
46