The IntlCodePointBreakIterator class

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

Introduction

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

Class synopsis

IntlCodePointBreakIterator extends IntlBreakIterator implements Traversable {
/* Inherited constants */
const int IntlBreakIterator::DONE = -1 ;
const int IntlBreakIterator::WORD_KANA = 300 ;
const int IntlBreakIterator::WORD_IDEO = 400 ;
const int IntlBreakIterator::LINE_HARD = 100 ;
/* Methods */
public getLastCodePoint(): int
/* Inherited methods */
public static IntlBreakIterator::createLineInstance(string $locale = ?): IntlBreakIterator
public static IntlBreakIterator::createWordInstance(string $locale = ?): IntlBreakIterator
public IntlBreakIterator::following(int $offset): int
intl_get_error_code(): int
intl_get_error_message(): string
public IntlBreakIterator::getLocale(string $locale_type): string
public IntlBreakIterator::getPartsIterator(int $key_type = IntlPartsIterator::KEY_SEQUENTIAL): IntlPartsIterator
public IntlBreakIterator::isBoundary(int $offset): bool
public IntlBreakIterator::next(int $offset = ?): int
public IntlBreakIterator::preceding(int $offset): int
public IntlBreakIterator::setText(string $text): bool
}

Table of Contents

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top