前端页面传来参数,其中image参数是一个数组:

如果后台使用下面代码接收会报错,下面是代码和报错截图:
$image = Request::instance()->param('image');报错截图:

但是,当使用代码:
$post = Request::instance()->param(); 时可以获取到全部的参数;下面的代码是可以正常执行的代码:
$post = Request::instance()->param();
$image = $post['image'];有没有大佬解释一下,为什么直接获取数组会报错?
(input()助手函数也尝试过,是同样的错误)