如何在 php 中定义常量并从所有文件访问它而不包括常量文件(任何类似 .Net 中的 AppSettings 的东西)

How to define constants in php and access it from all files without including the constants file (any thing like AppSettings in .Net)

我想定义一些常量并从任何文件访问这些常量而不包含 php 中的任何文件。

换句话说,我在 C#

中搜索 Web.Config->AppSettings 的任何等效项

您应该在名为 constants.php 的文件中定义它们,然后更改您的 php.ini 设置,以便始终加载此文件,然后再进行其他操作:

auto_prepend_file = /var/www/website/constants.php