wpseek.com
WordPress开发者和主题制作者的搜索引擎



addslashes_gpc › WordPress Function

Since0.71
已弃用n/a
addslashes_gpc ( $gpc )
参数:
  • (string|array) $gpc String or array of data to slash.
    Required: Yes
返回:
  • (string|array) Slashed `$gpc`.
定义在:
文档:

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



源码

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