addslashes_gpc ( $gpc )
addslashes_gpc – 为字符串中的特殊字符添加反斜线,防止它们被解释为SQL查询的一部分: 这个函数用于在数据插入数据库之前对其进行净化。在”_
将斜线添加到一个字符串中,或递归地将斜线添加到一个数组中的字符串中。
function addslashes_gpc( $gpc ) { return wp_slash( $gpc ); }