addslashes_gpc()WP 0.71

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

No Hooks.

Return

String|Array. Slashed $gpc.

Usage

addslashes_gpc( $gpc );
$gpc(string|array) (required)
String or array of data to slash.

Changelog

Since 0.71 Introduced.

addslashes_gpc() code WP 6.5.2

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