我应该在此处使用表格还是在配置文件中使用硬编码值?

发布于 2024-10-13 15:52:08 字数 285 浏览 3 评论 0原文

我需要设置不同的用户角色,即:

1-管理员 2位作家 3 名成员

我想知道是否应该为用户角色创建一个专用表,即仅存储名称和 ID,即:

USER ROLES
ID | NAME 

或者如果我只是将这些值作为关联数组放入配置文件中,即:

$config['roles'] = array(1=>'Administrator'...);

考虑我只需要在这里存储一个 id 和一个名称?

I need to set up different user roles i.e:

1-administrator
2-writer
3-member

I was wondering whether I should make a dedicated table for user roles i.e just to store the names and ids i.e:

USER ROLES
ID | NAME 

Or would it be ok if I were to just put the values in a config file as an associative array i.e:

$config['roles'] = array(1=>'Administrator'...);

Considering that I just need to store an id and a name here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

欲拥i 2024-10-20 15:52:08

如果这是生产应用程序,绝对使用数据库表。如果你想把管理工作交给别人,你以后会感谢自己的。

Absolutely use the database table if this is a production app. You will thank yourself later if you want to turn over administration to someone else.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文