The RecursiveRegexIterator class

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

简介

This recursive iterator can filter another recursive iterator via a regular expression.

类摘要

RecursiveRegexIterator extends RegexIterator implements RecursiveIterator {
/* 继承的常量 */
const int MATCH = 0 ;
const int GET_MATCH = 1 ;
const int ALL_MATCHES = 2 ;
const int SPLIT = 3 ;
const int REPLACE = 4 ;
const int USE_KEY = 1 ;
/* 方法 */
public __construct ( RecursiveIterator $iterator , string $pattern , int $mode = RecursiveRegexIterator::MATCH , int $flags = 0 , int $pregFlags = 0 )
public hasChildren ( ) : bool
/* 继承的方法 */
public RegexIterator::accept ( ) : bool
public RegexIterator::getFlags ( ) : int
public RegexIterator::getMode ( ) : int
public RegexIterator::getPregFlags ( ) : int
public RegexIterator::getRegex ( ) : string
public RegexIterator::setFlags ( int $flags ) : void
public RegexIterator::setMode ( int $mode ) : void
public RegexIterator::setPregFlags ( int $pregFlags ) : void
}

Table of Contents

User Contributed Notes

There are no user contributed notes for this page.
PHP8中文手册 站长在线 整理 版权归PHP文档组所有