RecursiveRegexIterator 类

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

简介

此递归迭代器可以通过正则表达式过滤另一个递归迭代器。

类概述

class RecursiveRegexIterator extends RegexIterator implements RecursiveIterator {
/* 继承的常量 */
/* 继承的属性 */
public ?string $replacement = null;
/* 方法 */
public __construct(
    RecursiveIterator $iterator,
    string $pattern,
    int $mode = RecursiveRegexIterator::MATCH,
    int $flags = 0,
    int $pregFlags = 0
)
public hasChildren(): bool
/* 继承的方法 */
}

目录

添加备注

用户贡献备注

此页面没有用户贡献的备注。
To Top