mirror of
https://github.com/php/php-src.git
synced 2026-04-13 02:52:48 +02:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
18 lines
335 B
PHP
18 lines
335 B
PHP
--TEST--
|
|
IntlTimeZone::getRegion(): basic test
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('intl'))
|
|
die('skip intl extension not enabled');
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
print_R(IntlTimeZone::getRegion('Europe/Amsterdam'));
|
|
echo "\n";
|
|
print_R(intltz_get_region('Europe/Amsterdam'));
|
|
echo "\n";
|
|
?>
|
|
--EXPECT--
|
|
NL
|
|
NL
|