gpt4 book ai didi

zend-framework2 - 禅2 : How to override module's configuration file?

转载 作者:行者123 更新时间:2023-12-04 23:26:10 27 4
gpt4 key购买 nike

如何覆盖 ./vendor/.../module_name/config/module.config.php 下的配置文件?

不,这个link不适合我。我不确定为什么。

最佳答案

尝试命名配置文件 filename.global.php 或 filename.local.php。

在 application.config.php 里面有这一行:

config/autoload/{,*.}{global,local}.php

关于 ZfcUser 模块和更改主路由。

zfcuser.global.php修改文件底部的以下内容:
return array(
'zfcuser' => $settings,
'service_manager' => array(
'aliases' => array(
'zfcuser_zend_db_adapter' => (isset($settings['zend_db_adapter'])) ? $settings['zend_db_adapter']: 'Zend\Db\Adapter\Adapter',
),
),
'router' => array(
'routes' => array(
'zfcuser' => array(
'options' => array(
'route' => '/member',
'defaults' => array(
'controller' => 'zfcuser',
'action' => 'index',
),
),
)
)
)
);

关于zend-framework2 - 禅2 : How to override module's configuration file?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12621177/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com