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



urlencode_deep › WordPress Function

Da2.2.0
Deprecaton/a
urlencode_deep ( $value )
Parametri:
  • (mixed) $value The array or string to be encoded.
    Richiesto:
Ritorna:
  • (mixed) The encoded value.
Definito a:
Codex:

Navigates through an array, object, or scalar, and encodes the values to be used in a URL.



Sorgenti

function urlencode_deep( $value ) {
	return map_deep( $value, 'urlencode' );
}