Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些数据要在应用程序中共享,但我应该使用数据库表并没有那么多。我想知道,我可以在模型中创建一个数组,然后从控制器获取该数组的数据吗?
我在网站上有一些类型的用户。这些用户有时有不同的主页(其他模块),我想创建一个数组$modules[userType][moduleArray];
$modules[userType][moduleArray];
干杯
绝对地。查看有关数据源的 CakePHP 食谱条目。您需要创建一个私有属性来保存您的数据,并根据需要实现读/写方法以弹出/推送到您的数组。