如何从对象数组转换为值数组?五

时间:2017-11-17 16:24:01

标签: laravel-5.2

我写这段代码:

$menu_cat= DB::table('menu') ->get();
$cat_ids = DB::table('category')
        ->select('id')
        ->where('parent',0 )
        ->whereNotIn('id',$menu_cat )
        ->get();

但我收到错误 类stdClas的对象无法转换为字符串 $ menu_cat是如何将$ menu_cat转换为整数数组的对象数组

0 个答案:

没有答案