Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

WP_MatchesMapRegex::_map() WordPress Method

The WP_MatchesMapRegex::_map() method is used to map an array of matches from a regular expression to a new array. This is useful for extracting information from a regular expression match.

WP_MatchesMapRegex::_map() #

do the actual mapping


Return

(string)


Top ↑

Source

File: wp-includes/class-wp-matchesmapregex.php

	private function _map() {
		$callback = array( $this, 'callback' );
		return preg_replace_callback( $this->_pattern, $callback, $this->_subject );
	}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.