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



addslashes_gpc › WordPress Function

Da0.71
Deprecaton/a
addslashes_gpc ( $gpc )
Parametri:
  • (string|array) $gpc String or array of data to slash.
    Richiesto:
Ritorna:
  • (string|array) Slashed `$gpc`.
Definito a:
Codex:

Adds slashes to a string or recursively adds slashes to strings within an array.



Sorgenti

function addslashes_gpc( $gpc ) {
	return wp_slash( $gpc );
}