The IntlCodePointBreakIterator class

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

简介

This break iterator identifies the boundaries between UTF-8 code points.

类摘要

class IntlCodePointBreakIterator extends IntlBreakIterator {
/* 继承的常量 */
/* 方法 */
/* 继承的方法 */
public IntlBreakIterator::getPartsIterator(string $type = IntlPartsIterator::KEY_SEQUENTIAL): IntlPartsIterator
}

目录

添加备注

用户贡献的备注 1 note

up
1
Matt Kynx
2 years 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 SIGNGRINNING FACE WITH SMILING EYES
To Top