addslashes_gpc( string $gpc )

Adds slashes to escape strings.


Description

Slashes will first be removed if magic_quotes_gpc is set, see https://secure.php.net/magic_quotes for more details.


Parameters

$gpc

(string) (Required) The string returned from HTTP request data.


Top ↑

Return

(string) Returns a string escaped with slashes.


Top ↑

Source

File: wp-includes/formatting.php

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

Top ↑

Changelog

Version Description
0.71 Introduced.