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.
创建配置文件的更好选择是什么?解析 config.ini 或需要包含配置数组的 config.php?
config.php 文件更好,因为它是原生 php 代码,因此不需要编译。我还要指出,ini 文件支持节和键值对,任何需要更深层次嵌套层次的东西都不能用 ini 格式表示。
有些人担心所涉及的安全问题,但网站的安全已经是一项复杂的任务,具有许多不同的内在方法。
FWIW,您忽略了 yaml 和 xml 作为配置的替代方案,这些配置受许多框架支持,并且有库来处理它们中的每一个。