gpt4 book ai didi

php - Laravel 通过自定义 ID 选择用户名

转载 作者:太空宇宙 更新时间:2023-11-03 11:30:01 25 4
gpt4 key购买 nike

我试图通过自定义 ID 获取用户用户名。

示例:用户“romas56”获取名为“steam_id”的表格行。

我正在尝试通过 SteamID 取出用户名:

$match->MVPusername = User::select('username')->where('steam_id', '=', $match->MVP)->get();

一切正常,但我得到的用户名是这样的:

[{"username":"romas56"}]

我只需要得到:没有 [{"username":""}]

的 romas56

最佳答案

首先搜索,然后选择用户名 属性。 Optional用于避免在没有找到steam_id的用户时出现trying to get property of non object错误

optional(User::where('steam_id', '=', $match->MVP)->first())->username;

关于php - Laravel 通过自定义 ID 选择用户名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50799336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com