mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

This is effectively removing ZPP tests, enabling warnings, and moving INI settings into the INI PHPT block
15 lines
296 B
PHP
15 lines
296 B
PHP
--TEST--
|
|
IntlTimeZone::countEquivalentIDs(): basic test
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
$count = IntlTimeZone::countEquivalentIDs('Europe/Lisbon');
|
|
var_dump($count >= 2);
|
|
|
|
$count2 = intltz_count_equivalent_ids('Europe/Lisbon');
|
|
var_dump($count2 == $count);
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|