CakeFest 2024: The Official CakePHP Conference

Класс IntlCodePointBreakIterator

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

Введение

Этот итератор прерываний указывает на границы между кодами символов UTF-8.

Обзор классов

class IntlCodePointBreakIterator extends IntlBreakIterator {
/* Наследуемые константы */
/* Методы */
/* Наследуемые методы */
public IntlBreakIterator::getPartsIterator(string $type = IntlPartsIterator::KEY_SEQUENTIAL): IntlPartsIterator
}

Содержание

add a note

User Contributed Notes 1 note

up
0
Matt Kynx
1 year ago
An example of using this to find all the code points in a string that cannot be transliterated to Latin-ASCII:

<?php

$string
= "Народm, Intl gurus get paid €10000/hr 😁";

$latinAscii = Transliterator::create('NFC; Any-Latin; Latin-ASCII;');
$transliterated = $latinAscii->transliterate($string);

$codePoints = IntlBreakIterator::createCodePointInstance();
$codePoints->setText($transliterated);

foreach (
$codePoints->getPartsIterator() as $char) {
$ord = IntlChar::ord($char);
if (
255 < $ord) {
echo
IntlChar::charName($ord) . "\n";
}
}
?>

Outputs:
EURO SIGN
GRINNING FACE WITH SMILING EYES
To Top