wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



addslashes_gpc › WordPress Function

Seit0.71
Veraltetn/v
addslashes_gpc ( $gpc )
Parameter:
  • (string|array) $gpc String or array of data to slash.
    Erforderlich: Ja
Gibt zurück:
  • (string|array) Slashed `$gpc`.
Definiert in:
Codex:

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



Quellcode

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