Dutch PHP Conference 2025 - Call For Papers

The RecursiveRegexIterator class

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

Вступ

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

Короткий огляд класу

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
/* Успадковані методи */
}

Зміст

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top