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



addslashes_gpc › WordPress Function

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

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

This function is just a wrapper for wp_slash(). It was originally related to magic quotes functionality which was deprecated in PHP 5.3.0 and removed in PHP 5.4.0.


Quellcode

function addslashes_gpc( $gpc ) {
	_deprecated_function( __FUNCTION__, '7.0.0', 'wp_slash()' );
	return wp_slash( $gpc );
}