View.php第394行中的BadMethodCallException:视图中不存在Method [get]

时间:2018-03-02 12:08:44

标签: laravel-5.3

我收到此错误,我无法弄清楚导致错误的原因,有人可以帮我解决这个问题吗? 这是代码

$id = array_column($product_array, "product_id", null);


$match = array_intersect($id, $product_id);
$res = array_filter(
    $product_array,
    function ($key) use ($match) {
        return !in_array($key, $match);
    },
    ARRAY_FILTER_USE_KEY
);


Var_dump($res);

0 个答案:

没有答案