1--TEST-- 2IntlTimeZone::getCanonicalID(): errors 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 11var_dump(IntlTimeZone::getCanonicalID()); 12var_dump(IntlTimeZone::getCanonicalID(array())); 13var_dump(IntlTimeZone::getCanonicalID("foo\x81")); 14--EXPECTF-- 15Warning: IntlTimeZone::getCanonicalID() expects at least 1 parameter, 0 given in %s on line %d 16 17Warning: IntlTimeZone::getCanonicalID(): intltz_get_canonical_id: bad arguments in %s on line %d 18bool(false) 19 20Warning: IntlTimeZone::getCanonicalID() expects parameter 1 to be string, array given in %s on line %d 21 22Warning: IntlTimeZone::getCanonicalID(): intltz_get_canonical_id: bad arguments in %s on line %d 23bool(false) 24 25Warning: IntlTimeZone::getCanonicalID(): intltz_get_canonical_id: could not convert time zone id to UTF-16 in %s on line %d 26bool(false) 27