Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

intliterator(3) [php man page]

INTLITERATOR(3) 							 1							   INTLITERATOR(3)

The IntlIterator class

INTRODUCTION
This class represents iterator objects throughout the intl extension whenever the iterator cannot be identified with any other object pro- vided by the extension. The distinct iterator object used internally by the foreach construct can only be obtained (in the relevant part here) from objects, so objects of this class serve the purpose of providing the hook through which this internal object can be obtained. As a convenience, this class also implements the Iterator interface, allowing the collection of values to be navigated using the methods defined in that interface. Both these methods and the internal iterator objects provided to foreach are backed by the same state (e.g. the position of the iterator and its current value). Subclasses may provide richer functionality. CLASS SYNOPSIS
IntlIterator IntlIteratorIterator Methods o public ReturnType IntlIterator::current (void ) o public ReturnType IntlIterator::key (void ) o public ReturnType IntlIterator::next (void ) o public ReturnType IntlIterator::rewind (void ) o public ReturnType IntlIterator::valid (void ) PHP Documentation Group INTLITERATOR(3)

Check Out this Related Man Page

INTLRULEBASEDBREAKITERATOR(3)						 1					     INTLRULEBASEDBREAKITERATOR(3)

The IntlRuleBasedBreakIterator class

INTRODUCTION
A subclass of IntlBreakIterator that encapsulates ICU break iterators whose behavior is specified using a set of rules. This is the most common kind of break iterators. These rules are described in the ICU Boundary Analysis User Guide. CLASS SYNOPSIS
IntlRuleBasedBreakIterator IntlRuleBasedBreakIteratorextends IntlBreakIteratorTraversable Constants o const integer$IntlRuleBasedBreakIterator::DONE-1 o const integer$IntlRuleBasedBreakIterator::WORD_NONE0 o const integer$IntlRuleBasedBreakIterator::WORD_NONE_LIMIT100 o const integer$IntlRuleBasedBreakIterator::WORD_NUMBER100 o const integer$IntlRuleBasedBreakIterator::WORD_NUMBER_LIMIT200 o const integer$IntlRuleBasedBreakIterator::WORD_LETTER200 o const integer$IntlRuleBasedBreakIterator::WORD_LETTER_LIMIT300 o const integer$IntlRuleBasedBreakIterator::WORD_KANA300 o const integer$IntlRuleBasedBreakIterator::WORD_KANA_LIMIT400 o const integer$IntlRuleBasedBreakIterator::WORD_IDEO400 o const integer$IntlRuleBasedBreakIterator::WORD_IDEO_LIMIT500 o const integer$IntlRuleBasedBreakIterator::LINE_SOFT0 o const integer$IntlRuleBasedBreakIterator::LINE_SOFT_LIMIT100 o const integer$IntlRuleBasedBreakIterator::LINE_HARD100 o const integer$IntlRuleBasedBreakIterator::LINE_HARD_LIMIT200 o const integer$IntlRuleBasedBreakIterator::SENTENCE_TERM0 o const integer$IntlRuleBasedBreakIterator::SENTENCE_TERM_LIMIT100 o const integer$IntlRuleBasedBreakIterator::SENTENCE_SEP100 o const integer$IntlRuleBasedBreakIterator::SENTENCE_SEP_LIMIT200 Methods o public IntlRuleBasedBreakIterator::__construct (string $rules, [string $areCompiled]) o public ReturnType IntlRuleBasedBreakIterator::getBinaryRules (void ) o public ReturnType IntlRuleBasedBreakIterator::getRules (void ) o public ReturnType IntlRuleBasedBreakIterator::getRuleStatus (void ) o public ReturnType IntlRuleBasedBreakIterator::getRuleStatusVec (void ) Inherited methods o private IntlBreakIterator::__construct (void ) o publicstatic ReturnType IntlBreakIterator::createCharacterInstance ([string $"locale"]) o publicstatic ReturnType IntlBreakIterator::createCodePointInstance (void ) o publicstatic ReturnType IntlBreakIterator::createLineInstance ([string $"locale"]) o publicstatic ReturnType IntlBreakIterator::createSentenceInstance ([string $"locale"]) o publicstatic ReturnType IntlBreakIterator::createTitleInstance ([string $"locale"]) o publicstatic ReturnType IntlBreakIterator::createWordInstance ([string $"locale"]) o public ReturnType IntlBreakIterator::current (void ) o public ReturnType IntlBreakIterator::first (void ) o public ReturnType IntlBreakIterator::following (string $"offset") o public ReturnType IntlBreakIterator::getErrorCode (void ) o ReturnType intl_get_error_code (void ) o public ReturnType IntlBreakIterator::getErrorMessage (void ) o ReturnType intl_get_error_message (void ) o public ReturnType IntlBreakIterator::getLocale (string $"locale_type") o public ReturnType IntlBreakIterator::getPartsIterator ([string $"key_type"]) o public ReturnType IntlBreakIterator::getText (void ) o public ReturnType IntlBreakIterator::isBoundary (string $"offset") o public ReturnType IntlBreakIterator::last (void ) o public ReturnType IntlBreakIterator::next ([string $"offset"]) o public ReturnType IntlBreakIterator::preceding (string $"offset") o public ReturnType IntlBreakIterator::previous (void ) o public ReturnType IntlBreakIterator::setText (string $"text") PREDEFINED CONSTANTS
o IntlRuleBasedBreakIterator::DONE - o IntlRuleBasedBreakIterator::WORD_NONE - o IntlRuleBasedBreakIterator::WORD_NONE_LIMIT - o IntlRuleBasedBreakIterator::WORD_NUMBER - o IntlRuleBasedBreakIterator::WORD_NUMBER_LIMIT - o IntlRuleBasedBreakIterator::WORD_LETTER - o IntlRuleBasedBreakIterator::WORD_LETTER_LIMIT - o IntlRuleBasedBreakIterator::WORD_KANA - o IntlRuleBasedBreakIterator::WORD_KANA_LIMIT - o IntlRuleBasedBreakIterator::WORD_IDEO - o IntlRuleBasedBreakIterator::WORD_IDEO_LIMIT - o IntlRuleBasedBreakIterator::LINE_SOFT - o IntlRuleBasedBreakIterator::LINE_SOFT_LIMIT - o IntlRuleBasedBreakIterator::LINE_HARD - o IntlRuleBasedBreakIterator::LINE_HARD_LIMIT - o IntlRuleBasedBreakIterator::SENTENCE_TERM - o IntlRuleBasedBreakIterator::SENTENCE_TERM_LIMIT - o IntlRuleBasedBreakIterator::SENTENCE_SEP - o IntlRuleBasedBreakIterator::SENTENCE_SEP_LIMIT - PHP Documentation Group INTLRULEBASEDBREAKITERATOR(3)
Man Page