mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
This is effectively removing ZPP tests, enabling warnings, and moving INI settings into the INI PHPT block
15 lines
232 B
PHP
15 lines
232 B
PHP
--TEST--
|
|
IntlTimeZone::getRegion(): basic test
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(IntlTimeZone::getRegion('Europe/Amsterdam'));
|
|
var_dump(intltz_get_region('Europe/Amsterdam'));
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(2) "NL"
|
|
string(2) "NL"
|