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;
/* 方法 */
private __construct()
public static create(string $id, int $direction = ?): Transliterator
public static createFromRules(string $rules, string $direction = ?): Transliterator
public getErrorCode(): int
public getErrorMessage(): string
public static listIDs(): array|false
public transliterate(string $subject, int $start = ?, int $end = ?): string|false
}

属性

id

预定义常量

Transliterator::FORWARD

Transliterator::REVERSE

目录

add a note add a note

User Contributed Notes 1 note

To Top