WP_MatchesMapRegex::apply()
Substitute substring matches in subject.
static helper function to ease use
Method of the class: WP_MatchesMapRegex{}
No Hooks.
Return
String
.
Usage
$result = WP_MatchesMapRegex::apply( $subject, $matches );
- $subject(string) (required)
- subject
- $matches(array) (required)
- data used for substitution
WP_MatchesMapRegex::apply() WP MatchesMapRegex::apply code WP 6.1.1
public static function apply( $subject, $matches ) { $oSelf = new WP_MatchesMapRegex( $subject, $matches ); return $oSelf->output; }