下面給大家介紹Thinkphp6自定義配置文件以及調(diào)用(config文件夾下的配置)方法,希望對(duì)需要的朋友有所幫助!
1、在thinkphp\config\下新建一個(gè)test.php配置文件
2、test.php
<?php // 自定義配置文件 return [ 'profile' => [ 'name' => 'mmcike', 'bank' => [ 'ABC' => '123', 'ncaa' ] ] ];
3、調(diào)用test.php配置文件
// 1.調(diào)用整個(gè)數(shù)組 $testConfig = \think\facade\Config::get('test'); //注意 //test.php 就是配置文件名稱
輸出:
// 2.只調(diào)用鍵名 profile 下的數(shù)組 $profile = \think\facade\Config::get('test.profile');
輸出:
// 3.調(diào)用索引鍵的數(shù)組 $val = \think\facade\Config::get('test.profile.bank.0');
輸出:
ncaa