PHP 类似于 ASP.NET 的 web.config

发布于 2024-10-15 01:10:58 字数 115 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋心╮凉 2024-10-22 01:10:58

如果您对解析配置文件感兴趣,有一个名为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文