mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
/** @not-serializable */
|
|
class Transliterator
|
|
{
|
|
/** @cvalue TRANSLITERATOR_FORWARD */
|
|
public const int FORWARD = UNKNOWN;
|
|
/** @cvalue TRANSLITERATOR_REVERSE */
|
|
public const int REVERSE = UNKNOWN;
|
|
|
|
public readonly string $id;
|
|
|
|
final private function __construct() {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias transliterator_create
|
|
*/
|
|
public static function create(string $id, int $direction = Transliterator::FORWARD): ?Transliterator {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias transliterator_create_from_rules
|
|
*/
|
|
public static function createFromRules(string $rules, int $direction = Transliterator::FORWARD): ?Transliterator {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias transliterator_create_inverse
|
|
*/
|
|
public function createInverse(): ?Transliterator {}
|
|
|
|
/**
|
|
* @return array<int, string>|false
|
|
* @tentative-return-type
|
|
* @alias transliterator_list_ids
|
|
*/
|
|
public static function listIDs(): array|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias transliterator_transliterate
|
|
*/
|
|
public function transliterate(string $string, int $start = 0, int $end = -1): string|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias transliterator_get_error_code
|
|
*/
|
|
public function getErrorCode(): int {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias transliterator_get_error_message
|
|
*/
|
|
public function getErrorMessage(): string {}
|
|
}
|