php / 8.1.5 / class.transliterator.html /

The Transliterator class

Introduction

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

Transliterator provides transliteration of strings.

Class synopsis

class Transliterator {
/* Constants */
const int FORWARD = 0;
const int REVERSE = 1;
/* Properties */
public string $id;
/* Methods */
final private __construct()
public static create(string $id, int $direction = Transliterator::FORWARD): ?Transliterator
public static createFromRules(string $rules, int $direction = Transliterator::FORWARD): ?Transliterator
public createInverse(): ?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
}

Properties

id

Predefined Constants

Transliterator::FORWARD
Transliterator::REVERSE

Table of Contents

© 1997–2021 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/class.transliterator.php