Transliterator::create

transliterator_create

(PHP 5 >= 5.4.0, PHP 7, PECL intl >= 2.0.0)

Transliterator::create -- transliterator_createCreate a transliterator

说明

面向对象风格

public static Transliterator::create ( string $id [, int $direction ] ) : Transliterator

过程化风格

transliterator_create ( string $id [, int $direction ] ) : Transliterator

Opens a Transliterator by id.

Warning

本函数还未编写文档,仅有参数列表。

参数

id

The id.

direction

The direction, defaults to >Transliterator::FORWARD. May also be set to Transliterator::REVERSE.

返回值

Returns a Transliterator object on success, or NULL on failure.

参见

User Contributed Notes

Baran Sakallolu 12-Nov-2019 08:29
A good example of create for non latin languages is Turkish.

There both upper case I character and lowercase ? character which makes other strtolower kind of functions useless.

$text = "I?d?r";

echo Transliterator::create("tr-Lower")->transliterate($text);

will return the correct result ??d?r, not i?d?r .