php – 如何在Laravel中编辑和保存自定义配置文件?
作者:互联网
我在Laravel 4中创建了简单的Web应用程序.我有后端来管理应用程序内容.作为后端的一部分,我希望有UI来管理应用程序设置.我希望我的配置变量存储在文件[FOLDER:/app/config/customconfig.php]中.
我想知道Laravel是否有可能有自定义配置文件,可以通过后端UI管理/更新?
解决方法:
你必须扩展Fileloader,但它很简单:
class FileLoader extends \Illuminate\Config\FileLoader
{
public function save($items, $environment, $group, $namespace = null)
{
$path = $this->getPath($namespace);
if (is_null($path))
{
return;
}
$file = (!$environment || ($environment == 'production'))
? "{$path}/{$group}.php"
: "{$path}/{$environment}/{$group}.php";
$this->files->put($file, '<?php return ' . var_export($items, true) . ';');
}
}
用法:
$l = new FileLoader(
new Illuminate\Filesystem\Filesystem(),
base_path().'/config'
);
$conf = ['mykey' => 'thevalue'];
$l->save($conf, '', 'customconfig');
标签:php,laravel,laravel-4,configuration-files 来源: https://codeday.me/bug/20190725/1529825.html