PHP 8.1.24 Released!

The Transliterator class

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

Introdução

Transliterator provides transliteration of strings.

Sinopse da classe

class Transliterator {
/* Constantes */
public const int FORWARD;
public const int REVERSE;
/* Propriedades */
public readonly string $id;
/* Métodos */
final private __construct()
public static create(string $id, int $direction = Transliterator::FORWARD): ?Transliterator
public static createFromRules(string $rules, int $direction = Transliterator::FORWARD): ?Transliterator
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
}

Propriedades

id

Constantes pré-definidas

Transliterator::FORWARD

Transliterator::REVERSE

Changelog

Versão Descrição
8.2.0 The id property is now readonly.

Índice

add a note

User Contributed Notes 2 notes

To Top