在php中我可以创建一个.inf文件,其中包含一些定义的常量并将其包含在代码中,然后如果有人更改其中的constantg,它将被更新使用。
类似于.net的方法是什么?
答案 0 :(得分:0)
我认为这将是web.config文件中的appSettings
:
<system.web>
<appSettings>
<add key="somekey" value="somevalue" />
</appSettings>
</system.web>
使用ConfigurationManager.AppSettings
:
string setting = System.Configuration.ConfigurationManager.AppSettings["somekey"];
(请注意,您需要添加对System.Configuration.dll
的引用才能生效。)