mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

This is effectively removing ZPP tests, enabling warnings, and moving INI settings into the INI PHPT block
14 lines
265 B
PHP
14 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"
|