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.
我对 php 比较陌生。所以请原谅我,如果我的问题似乎是错误的。
最近我们开始为我们的客户开发一个CMS。系统将大部分配置细节存储在 global 中$CONF。例如,系统将站点名称、站点管理员电子邮件、站点统计信息等存储在此变量中。当我使用 aprint_r($CONF)时,它的长度超过一页。
$CONF
print_r($CONF)
我的问题是,将这些值作为数组保存在 php 文件中并包含它,比将所有这些值保存在内存中更好吗?两者的优缺点是什么?