我有一个非常简单的 SQL 查询,只是一个
select id, user_one, user_two from users
它返回以下数组
array(1) { [0]=> object(stdClass)#189 (3) { ["id"]=> string(2) "18" ["user_one"]=> string(1) "1" ["user_two"]=> string(1) "2" } }
我想做的是获取不是我的人的ID
因此,要获取我的 ID,我只需使用
$userId = Auth::user()->id;
我的 ID 将在 user_one 或 user_two 中
谁能帮我一把?
干杯,