php中url传递数组

我们知道在php中url可以用来传递`参数`

然后我们可以通过`$_GET`来获取参数

有没有办法用`url`来传递数组

答案是可以的

以下`url`即可传递数组

`https://www.test.cn/test/1?id=1&data[mobile]=18812345678&data[qq]=183367466`

在`laravel`的`controller`中使用

>use Illuminate\Http\Request;
public function list(Request $request){
echo "

";
print_r($request->all());

得到输出结果

>Array
(
[id] => 1
[data] => Array
(
[mobile] => 18812345678
[qq] => 183367466
)
)
    A+
发布日期:2020年11月16日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: