wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



rawurlencode_deep › WordPress Function

Depuis3.4.0
Dépréciéen/a
rawurlencode_deep ( $value )
Paramètres:
  • (mixed) $value The array or string to be encoded.
    Requis: Oui
Retourne:
  • (mixed) The encoded value.
Défini(e) dans:
Codex:

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



Source

function rawurlencode_deep( $value ) {
	return map_deep( $value, 'rawurlencode' );
}