addslashes_gpc()

最后更新于:2021-11-25 19:07:48

addslashes_gpc( string$gpc)

Adds slashes to escape strings.

参数

$gpc

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

响应

(string) 响应s a string escaped with slashes.

源文件

文件: gc-includes/formatting.php

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