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 中编辑和保存自定义配置文件?
基础教程推荐
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01