Can I load a "config" file within a config file in CodeIgniter?
I have an "environment" c开发者_StackOverflow中文版onfig file that I'm using to separate dev from staging from prod and I'd like to include it in another config file to determine the proper path.
I'm assuming you want to load it from your config.php
and/or database.php
. Just include it like you'd include any other file in PHP (using either include
or require
).
require('environment_config.php');
精彩评论