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.
我知道 fopen 函数可以在 php 文件中写入行,如果我有一个带有许多 const 的 config.php,例如:
define('NAME', 'David');
我想发布另一个名称来替换默认值,这可能吗?
这取决于脚本运行的环境。也就是说,不要这样做。将值存储在外部存储中并在脚本中读取它,而不是在define().
define()