wpseek.com
A WordPress-centric search engine for devs and theme authors



addslashes_gpc › WordPress Function

Since0.71
Deprecated7.0.0
addslashes_gpc ( $gpc )
Parameters:
  • (string|array) $gpc String or array of data to slash.
    Required: Yes
See:
Returns:
  • (string|array) Slashed `$gpc`.
Defined at:
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.


Source

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