我想过滤然后将 POST 和 GET 的所有值放在一个以键命名的变量中,所以我想出了这段代码。
foreach($_REQUEST as $key => $value){
$$key = mysql_real_escape_string(htmlspecialchars($value));
}
然后我想在函数中使用这些变量?我怎样才能做到这一点?
funciton get_all_posts(){
//return some information from the the new variable
return $username;
return $email;
//return what ever I want to return from POST/GET using the new variables
}
echo get_all_posts();