How to edit and save custom config files in Laravel?(如何在 Laravel 中编辑和保存自定义配置文件?)
问题描述
我正在 Laravel 4 中创建简单的 Web 应用程序.我有用于管理应用程序内容的后端.作为后端的一部分,我希望有 UI 来管理应用程序设置.我希望我的配置变量存储在文件 [FOLDER: /app/config/customconfig.php] 中.
I am creating simple web application in Laravel 4. I have backend for managing applications content. As a part of backend i want to have UI to manage applications settings. I want my configuration variables to be stored in file [FOLDER: /app/config/customconfig.php].
我想知道 Laravel 中是否有可能拥有自定义配置文件,可以通过后端 UI 进行管理/更新?
I was wondering if there's any possibility in Laravel how to have custom config file, which can be managed/updated thru backend UI?
推荐答案
我是这样做的...
config(['YOURKONFIG.YOURKEY' => 'NEW_VALUE']);
$fp = fopen(base_path() .'/config/YOURKONFIG.php' , 'w');
fwrite($fp, '<?php return ' . var_export(config('YOURKONFIG'), true) . ';');
fclose($fp);
这篇关于如何在 Laravel 中编辑和保存自定义配置文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Laravel 中编辑和保存自定义配置文件?
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- Laravel 仓库 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01