🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 代码 ~~~ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversable { /* Methods */ /** * (PHP 5 &gt;=5.5.0)<br/> * @link https://secure.php.net/manual/en/intlbreakiterator.construct.php * @param string $rules * @param string $compiled [optional] */ #[Pure] public function __construct($rules, $compiled = false) { } /** * (PHP 5 &gt;=5.5.0)<br/> * Create break iterator for boundaries of combining character sequences * @link https://secure.php.net/manual/en/intlbreakiterator.createcharacterinstance.php * @param string $locale * @return IntlRuleBasedBreakIterator */ public static function createCharacterInstance($locale) { } /** * (PHP 5 &gt;=5.5.0)<br/> * Create break iterator for boundaries of code points * @link https://secure.php.net/manual/en/intlbreakiterator.createcodepointinstance.php * @return IntlRuleBasedBreakIterator */ public static function createCodePointInstance() { } /** * (PHP 5 &gt;=5.5.0)<br/> * Create break iterator for logically possible line breaks * @link https://secure.php.net/manual/en/intlbreakiterator.createlineinstance.php * @param string $locale [optional] * @return IntlRuleBasedBreakIterator */ public static function createLineInstance($locale) { } /** * (PHP 5 &gt;=5.5.0)<br/> * Create break iterator for sentence breaks * @link https://secure.php.net/manual/en/intlbreakiterator.createsentenceinstance.php * @param string $locale [optional] * @return IntlRuleBasedBreakIterator */ public static function createSentenceInstance($locale) { } /** * (PHP 5 &gt;=5.5.0)<br/> * Create break iterator for title-casing breaks * @link https://secure.php.net/manual/en/intlbreakiterator.createtitleinstance.php * @param string $locale [optional] * @return IntlRuleBasedBreakIterator */ public static function createTitleInstance($locale) { } /** * (PHP 5 &gt;=5.5.0)<br/> * Create break iterator for word breaks * @link https://secure.php.net/manual/en/intlbreakiterator.createwordinstance.php * @param string $locale [optional] * @return IntlRuleBasedBreakIterator */ public static function createWordInstance($locale) { } /** * (PHP 5 &gt;=5.5.0)<br/> * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getbinaryrules.php * Get the binary form of compiled rules * @return string */ #[Pure] public function getBinaryRules() { } /** * (PHP 5 &gt;=5.5.0)<br/> * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrules.php * Get the rule set used to create this object * @return string */ #[Pure] public function getRules() { } /** * (PHP 5 &gt;=5.5.0)<br/> * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrulesstatus.php * Get the largest status value from the break rules that determined the current break position * @return int */ #[Pure] public function getRuleStatus() { } /** * (PHP 5 &gt;=5.5.0)<br/> * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrulestatusvec.php * Get the status values from the break rules that determined the current break position * @return array */ #[Pure] public function getRuleStatusVec() { } } ~~~