php-src/ext/intl/tests/transliterator_create_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

18 lines
252 B
PHP

--TEST--
Transliterator::create (basic)
--EXTENSIONS--
intl
--FILE--
<?php
$t = Transliterator::create("any-latin");
echo $t->id,"\n";
$t = transliterator_create("any-latin");
echo $t->id,"\n";
echo "Done.\n";
?>
--EXPECT--
any-latin
any-latin
Done.