wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



_deep_replace › WordPress Function

Da2.8.1
Deprecaton/a
_deep_replace ( $search, $subject )
Accedi:
  • private
Parametri: (2)
  • (string|array) $search The value being searched for, otherwise known as the needle. An array may be used to designate multiple needles.
    Richiesto:
  • (string) $subject The string being searched and replaced on, otherwise known as the haystack.
    Richiesto:
Ritorna:
  • (string) The string with the replaced values.
Definito a:
Codex:

Performs a deep string replace operation to ensure the values in $search are no longer present.

Repeats the replacement operation until it no longer replaces anything to remove "nested" values e.g. $subject = '%0%0%0DDD', $search ='%0D', $result ='' rather than the '%0%0DD' that str_replace would return


Sorgenti

function _deep_replace( $search, $subject ) {
	$subject = (string) $subject;

	$count = 1;
	while ( $count ) {
		$subject = str_replace( $search, '', $subject, $count );
	}

	return $subject;
}