addslashes_gpc

函数
addslashes_gpc ( $gpc )
参数
  • (string|array) $gpc String or array of data to slash.
    Required:
返回值
  • (string|array) Slashed `$gpc`.
定义位置
相关方法
addslashes_strings_onlyadd_cssclassstripslashes_deepadd_pages_pageadd_users_page
引入
0.71
弃用
-

addslashes_gpc – 为字符串中的特殊字符添加反斜线,防止它们被解释为SQL查询的一部分: 这个函数用于在数据插入数据库之前对其进行净化。在”_

将斜线添加到一个字符串中,或递归地将斜线添加到一个数组中的字符串中。

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

常见问题

FAQs
查看更多 >