summaryrefslogtreecommitdiff
path: root/ext/intl/tests/timezone_IDforWindowsID_basic2.phpt
blob: d7d865c7a702e6ffe679dcf4452ec80717cf00bf (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
33
34
35
36
37
38
39
40
41
42
43
44
45
--TEST--
IntlTimeZone::getIDForWindowsID basic test
--SKIPIF--
<?php
if (!extension_loaded('intl'))
	die('skip intl extension not enabled'); ?>
<?php if (version_compare(INTL_ICU_VERSION, '58.1') < 0) die('skip for ICU >= 58.1'); ?>
--FILE--
<?php

$tzs = array(
  'Gnomeregan' => array(NULL),
  'India Standard Time' => array(NULL),
  'Pacific Standard Time' => array('001', 'CA', 'MX', 'US', 'ZZ'),
  'Romance Standard Time' => array('001', 'BE', 'DK', 'ES', 'FR'),
);

foreach ($tzs as $tz => $regions) {
  echo "** $tz\n";
  foreach ($regions as $region) {
    var_dump(IntlTimeZone::getIDForWindowsID($tz, $region));
    if (intl_get_error_code() != U_ZERO_ERROR) {
      echo "Error: ", intl_get_error_message(), "\n";
    }
  }
}

--EXPECT--
** Gnomeregan
bool(false)
Error: intltz_get_windows_id: Unknown windows timezone: U_ILLEGAL_ARGUMENT_ERROR
** India Standard Time
string(13) "Asia/Calcutta"
** Pacific Standard Time
string(19) "America/Los_Angeles"
string(17) "America/Vancouver"
string(19) "America/Los_Angeles"
string(19) "America/Los_Angeles"
string(7) "PST8PDT"
** Romance Standard Time
string(12) "Europe/Paris"
string(15) "Europe/Brussels"
string(17) "Europe/Copenhagen"
string(13) "Europe/Madrid"
string(12) "Europe/Paris"