1--TEST--
2IntlTimeZone::getCanonicalID: basic test
3--EXTENSIONS--
4intl
5--FILE--
6<?php
7ini_set("intl.error_level", E_WARNING);
8print_R(IntlTimeZone::getCanonicalID('Portugal'));
9echo "\n";
10print_R(intltz_get_canonical_id('Portugal'));
11echo "\n";
12?>
13--EXPECT--
14Europe/Lisbon
15Europe/Lisbon
15