mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
24 lines
570 B
PHP
24 lines
570 B
PHP
--TEST--
|
|
IntlTimeZone::getCanonicalID(): second argument
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
|
|
<?php if (version_compare(INTL_ICU_VERSION, '53.1') >= 0) die('skip for ICU < 53.1'); ?>
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
|
|
var_dump(IntlTimeZone::getCanonicalID('Portugal', $isSystemId));
|
|
var_dump($isSystemId);
|
|
|
|
var_dump(IntlTimeZone::getCanonicalID('GMT +01:25', $isSystemId));
|
|
var_dump($isSystemId);
|
|
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
string(13) "Europe/Lisbon"
|
|
bool(true)
|
|
string(0) ""
|
|
bool(false)
|
|
==DONE==
|