我们在用ThinkPHP6时,习惯把一些常用的配置放在config.php文件下,那该如何读取文件中的代码参数呢?
比如我们在config文件夹下创建一个menu.php的配置文件,里面存放导航菜单数组数组
<?php return [ 'homeInfo' => [ 'title'=>'首页', 'href'=>(string) url('/admin/Index/console'), ], 'logoInfo' => [ 'title'=>'后台管理系统', 'image'=>'/static/admin/layuimini/images/logo.png', 'href'=>'', ], ...... ...... ]; ?>
读取配置文件方法
ThinkPHP6我们需要使用 use think\facade\Config; 引入,然后使用Config::get('menu')读取配置文件
<?php declare (strict_types = 1); namespace app\admin\controller; use think\facade\Config; class Index { public function menu(){ $memu=Config::get('menu'); return json($memu); } } ?>
文章评论(0)