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