WP_MatchesMapRegex::__construct( string $subject, array $matches )
constructor
Parameters
- $subject
-
(Required) subject if regex
- $matches
-
(Required) data to use in map
Source
File: wp-includes/class-wp-matchesmapregex.php
public function __construct($subject, $matches) {
$this->_subject = $subject;
$this->_matches = $matches;
$this->output = $this->_map();
}