1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/intl/tests/transliterator_create_basic.phpt
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

20 lines
340 B
PHP

--TEST--
Transliterator::create (basic)
--SKIPIF--
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
--FILE--
<?php
ini_set("intl.error_level", E_WARNING);
$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.