标签: codeigniter
我有一个“环境”配置文件,我用它将dev与stod分开,我希望将它包含在另一个配置文件中以确定正确的路径。
答案 0 :(得分:2)
我假设您要从config.php和/或database.php加载它。只需包含它就像在PHP中包含任何其他文件一样(使用include或require)。
config.php
database.php
include
require
require('environment_config.php');