我应该在此处使用表格还是在配置文件中使用硬编码值?
我需要设置不同的用户角色,即:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这是生产应用程序,绝对使用数据库表。如果你想把管理工作交给别人,你以后会感谢自己的。
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.