0

我想过滤然后将 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();
4

5 回答 5

4

无需传递这些信息,只需像这样细化并按原样使用

foreach($_REQUEST as $key => $value){
   $_REQUEST[$keys] = mysql_real_escape_string(htmlspecialchars($value));
}
于 2013-07-30T06:44:51.433 回答
0

我给你一个例子

function security ( &$data) {
    return is_array( $data ) ? array_map('security', $data) : mysql_real_escape_string(htmlspecialchars( $data, ENT_QUOTES ));
}

$_REQUEST['s'] = '"Hello"';
$_REQUEST['y'] = 'World\'s';

$_REQUEST = security( $_REQUEST );

print_r( $_REQUEST );


function get_all_posts() {
    extract($_REQUEST);
    //return some information from the the new variable
    return $s;
    return $y;
    //return what ever I want to return from POST/GET using the new variables
}

echo get_all_posts();
于 2013-07-30T06:53:09.923 回答
0

我个人建议使用以键为索引的预定义数组

$request_array=array('username'=>'','password'=>'');

因为使用新添加的变量(一开始没有计划)很容易处理。但是,您还有另一种选择可以按班级进行。

class stackoverflow{

    public $username;
     function __construct($mysqli){}

    //some function filter and store $this->username=$mysqli->real_escape_string($value);
     //some function able to use $this->username;
}

$request=new stackoverflow($mysqli);
$request->filter_request();
$request->get_all_post();
于 2013-07-30T06:53:10.217 回答
0

可以直接使用。

提取($_REQUEST);

然后直接使用 $username; 在你的函数里面

谢谢, 迪维扬

于 2013-07-30T06:41:55.393 回答
0

你可以使用这样的东西

$array = array();
foreach($_REQUEST as $key => $value){
   $array[$key] = mysql_real_escape_string(htmlspecialchars($value));
}

funciton get_all_posts($arr){
    //return some information from the the new variable

    // you can use $arr inside function 

    return $username;
    return $email;
    //return what ever I want to return from POST/GET using the new variables
}

echo get_all_posts($array);

我希望它会有所帮助

于 2013-07-30T06:36:03.227 回答