The Transliterator class

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

简介

Transliterator provides transliteration of strings.

类摘要

Transliterator {
/* 常量 */
const int FORWARD = 0 ;
const int REVERSE = 1 ;
/* 属性 */
public $id ;
/* 方法 */
final private __construct ( )
public static create ( string $id , int $direction = Transliterator::FORWARD ) : Transliterator|null
public static createFromRules ( string $rules , int $direction = Transliterator::FORWARD ) : Transliterator|null
public createInverse ( ) : Transliterator|null
public getErrorCode ( ) : int|false
public getErrorMessage ( ) : string|false
public static listIDs ( ) : array|false
public transliterate ( string $string , int $start = 0 , int $end = -1 ) : string|false
}

属性

id

预定义常量

Transliterator::FORWARD

Transliterator::REVERSE

Table of Contents

User Contributed Notes

metalinspired 13-Jul-2021 09:44
New location of documentation: https://unicode-org.github.io/icu/userguide/transforms/general/
asphp at dsgml dot com 02-Sep-2014 09:07
For more documentation see here: http://userguide.icu-project.org/transforms/general
PHP8中文手册 站长在线 整理 版权归PHP文档组所有