我正在使用以下查询。
$profile_status= DB::table('profiles')->select('profile_status')->where('id',$user_id)->pluck('profile_status');
返回:[“创建”,“创建”]
我只想获取存储在row.like中的值:创建
答案 0 :(得分:0)
在同一查询中无需同时使用select和pluck。您可以尝试以下方法:
$profile_status=DB::table('profiles')->where('id', $user_id)->first()->profile_status;