1--TEST--
2IntlTimeZone::getGMT(): basic test
3--EXTENSIONS--
4intl
5--FILE--
6<?php
7ini_set("intl.error_level", E_WARNING);
8$tz = IntlTimeZone::getGMT();
9print_r($tz);
10$tz = intltz_get_gmt();
11print_r($tz);
12?>
13--EXPECT--
14IntlTimeZone Object
15(
16    [valid] => 1
17    [id] => GMT
18    [rawOffset] => 0
19    [currentOffset] => 0
20)
21IntlTimeZone Object
22(
23    [valid] => 1
24    [id] => GMT
25    [rawOffset] => 0
26    [currentOffset] => 0
27)
27