(PHP 5 >= 5.5.0, PHP 7, PHP 8)
A “break iterator” is an ICU object that exposes methods for locating boundaries in text (e.g. word or sentence boundaries). The PHP IntlBreakIterator serves as the base class for all types of ICU break iterators. Where extra functionality is available, the intl extension may expose the ICU break iterator with suitable subclasses, such as IntlRuleBasedBreakIterator or IntlCodePointBreakIterator.
This class implements IteratorAggregate. Traversing an IntlBreakIterator yields non-negative integer values representing the successive locations of the text boundaries, expressed as UTF-8 code units (byte) counts, taken from the beginning of the text (which has the location 0). The keys yielded by the iterator simply form the sequence of natural numbers {0, 1, 2, …}.
IntlBreakIterator::DONE intIntlBreakIterator::WORD_NONE intIntlBreakIterator::WORD_NONE_LIMIT intIntlBreakIterator::WORD_NUMBER intIntlBreakIterator::WORD_NUMBER_LIMIT intIntlBreakIterator::WORD_LETTER intIntlBreakIterator::WORD_LETTER_LIMIT intIntlBreakIterator::WORD_KANA intIntlBreakIterator::WORD_KANA_LIMIT intIntlBreakIterator::WORD_IDEO intIntlBreakIterator::WORD_IDEO_LIMIT intIntlBreakIterator::LINE_SOFT intIntlBreakIterator::LINE_SOFT_LIMIT intIntlBreakIterator::LINE_HARD intIntlBreakIterator::LINE_HARD_LIMIT intIntlBreakIterator::SENTENCE_TERM intIntlBreakIterator::SENTENCE_TERM_LIMIT intIntlBreakIterator::SENTENCE_SEP intIntlBreakIterator::SENTENCE_SEP_LIMIT int| Version | Description |
|---|---|
| 8.4.0 | The class constants are now typed. |
| 8.0.0 | IntlBreakIterator implements IteratorAggregate now. Previously, Traversable was implemented instead. |