WP_MatchesMapRegex::__construct( string $subject, array $matches )

In this article

constructor

Parameters

$subjectstringrequired
subject if regex
$matchesarrayrequired
data to use in map

Source

public function __construct( $subject, $matches ) {
	$this->_subject = $subject;
	$this->_matches = $matches;
	$this->output   = $this->_map();
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.