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
18 lines
252 B
PHP
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.
|