1--TEST--
2IntlTimeZone::createTimeZone(): basic test
3--SKIPIF--
4<?php
5if (!extension_loaded('intl'))
6    die('skip intl extension not enabled');
7--FILE--
8<?php
9ini_set("intl.error_level", E_WARNING);
10$tz = IntlTimeZone::createTimeZone('GMT+01:00');
11print_r($tz);
12$tz = intltz_create_time_zone('GMT+01:00');
13print_r($tz);
14?>
15--EXPECT--
16IntlTimeZone Object
17(
18    [valid] => 1
19    [id] => GMT+01:00
20    [rawOffset] => 3600000
21    [currentOffset] => 3600000
22)
23IntlTimeZone Object
24(
25    [valid] => 1
26    [id] => GMT+01:00
27    [rawOffset] => 3600000
28    [currentOffset] => 3600000
29)
30