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