使用 activerecord 在 JSON 编码字符串中查找 ID 号的最佳方法
我正在数据库中存储一些网站设置的 ID 号 JSON 字符串。我需要创建一个活动记录查询来查找该字符串中的 ID 号。最好的方法是什么?
存储字符串的示例:
["25","26","27","28","29"]
我可能在想:
$this->db->like('settings', '"28"');
但是,这似乎有点即兴......
I am storing JSON strings of ID numbers in my database for some website settings. I need create an active record query to look for an ID number in this string. What's the best way to do this?
Example of stored string:
["25","26","27","28","29"]
I was thinking perhaps:
$this->db->like('settings', '"28"');
However, this seems a little improvised...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找类似的东西:
I think you are searching for something like: