addslashes_gpc()WP 0.71

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

Хуков нет.

Возвращает

Строку|Массив. Slashed $gpc.

Использование

addslashes_gpc( $gpc );
$gpc(строка|массив) (обязательный)
String or array of data to slash.

Список изменений

С версии 0.71 Введена.

Код addslashes_gpc() WP 6.6.2

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