123456789101112131415161718192021222324252627 |
- --TEST--
- IntlTimeZone::createDefault(): basic test
- --EXTENSIONS--
- intl
- --FILE--
- <?php
- ini_set("intl.error_level", E_WARNING);
- $tz = IntlTimeZone::createDefault();
- print_r($tz);
- $tz = intltz_create_default();
- print_r($tz);
- ?>
- --EXPECTF--
- IntlTimeZone Object
- (
- [valid] => 1
- [id] => %s
- [rawOffset] => %i
- [currentOffset] => %i
- )
- IntlTimeZone Object
- (
- [valid] => 1
- [id] => %s
- [rawOffset] => %i
- [currentOffset] => %i
- )
|