PHP 类似于 ASP.NET 的 web.config
在 PHP 中实现类似于 ASP.NET 的 web.config
的东西,哪种是最好的、官方的和/或“有福的”方法?请考虑到这些配置文件必须由位于可能不同文件夹中的多个 PHP 文件读取。
Which is the best, official and/or "blessed" way to implement something akin to ASP.NET's web.config
in PHP? Take into consideration that these configuration file(s) will have to be read by several PHP files located in possibly different folders.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您对解析配置文件感兴趣,有一个名为 Zend_Config< 的 Zend Framework 类/a> 它将处理 INI、XML、Yaml 或 JSON 文件到应用程序的关联数组的转换。
与许多 Zend Framework 类一样,它可以单独工作,因此您可以使用它而无需采用整个框架。
If you're interested in parsing configuration files, there is a Zend Framework class called Zend_Config that will handle the translation of INI, XML, Yaml or JSON files into an associative array for your application.
Like many Zend Framework classes, it works by itself, so you can use it without having to adopt the whole framework.