1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00
Files
archived-php-src/ext/intl/tests/timezone_getEquivalentID_basic.phpt
Gina Peter Banyard c42e6d62d8 ext/intl: modernize tests (#19392)
This is effectively removing ZPP tests, enabling warnings, and moving INI settings into the INI PHPT block
2025-08-06 23:33:48 +01:00

15 lines
265 B
PHP

--TEST--
IntlTimeZone::getEquivalentID(): basic test
--EXTENSIONS--
intl
--FILE--
<?php
var_dump(IntlTimeZone::getEquivalentID('Europe/Lisbon', "1"));
var_dump(intltz_get_equivalent_id('Europe/Lisbon', 1));
?>
--EXPECT--
string(8) "Portugal"
string(8) "Portugal"