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.
在 yiic.php 中,我包含了 config: domian.config 和另外的带有 main.config 的 crate yii 应用程序,我在其中尝试使用诸如$db_serv,$db_user等变量。但是这些变量是未定义的,尽管 domian.config 包含所有这些。
$db_serv
$db_user
你确定你的 domain.config 在你加载 main.config 之前被执行了吗?
$config = dirname(__FILE__) . '/protected/config/main.php';
yii 项目的 index.php 中的这一行只定义了一个路径。它不会在第一次执行配置。
希望这可以帮助