将数组组合成http请求字符串:

'test','method'=>'index');
$query_string = http_build_query($params_array);
echo $query_string;
// 输出:action=test&method=index
?>