wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



rawurlencode_deep › WordPress Function

Od3.4.0
Przestarzałyn/a
rawurlencode_deep ( $value )
Parametry:
  • (mixed) $value The array or string to be encoded.
    Wymagane: Tak
Powrót:
  • (mixed) The encoded value.
Zdefiniowane na:
Codex:

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



Źródło

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