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



addslashes_gpc › WordPress Function

Depuis0.71
Dépréciéen/a
addslashes_gpc ( $gpc )
Paramètres:
  • (string|array) $gpc String or array of data to slash.
    Requis: Oui
Retourne:
  • (string|array) Slashed `$gpc`.
Défini(e) dans:
Codex:

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



Source

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