PHP 8.3.4 Released!

The Transliterator class

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

Introduction

Transliterator provides transliteration of strings.

Class synopsis

class Transliterator {
/* Constants */
public const int FORWARD;
public const int REVERSE;
/* Properties */
public readonly 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 static listIDs(): array|false
public transliterate(string $string, int $start = 0, int $end = -1): string|false
}

Properties

id

Changelog

Version Description
8.2.0 The id property is now readonly.

Table of Contents

add a note

User Contributed Notes 2 notes

To Top