The Transliterator class

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

Wstęp

Transliterator provides transliteration of strings.

Krótki opis klasy

Transliterator {
/* Stałe */
const integer FORWARD = 0 ;
const integer REVERSE = 1 ;
/* Właściwości */
public $id ;
/* Metody */
__construct ( void )
public static create ( string $id [, int $direction ] ) : Transliterator
public static createFromRules ( string $rules [, string $direction ] ) : Transliterator
public createInverse ( void ) : Transliterator
public getErrorCode ( void ) : int
public getErrorMessage ( void ) : string
public static listIDs ( void ) : array
public transliterate ( string $subject [, int $start [, int $end ]] ) : string
}

Właściwości

id

Stałe predefiniowane

Transliterator::FORWARD

Transliterator::REVERSE

Spis treści

add a note add a note

User Contributed Notes 2 notes

To Top