thinkphp6自定义配置文件以及调用
2021-03-04 17:21:01    177    0    0
admin

1. 在thinkphp\config\下新建一个test.php配置文件

2. 编辑test.php

<?php
// 自定义配置文件
    return [
     'profile' =>[
         'name' => 'mmcike',
            'bank' => [
                'ABC' => '123',
                'ncaa'
            ]
        ]
    ]
?>​

 

3. .调用test.php配置文件

// 调用整个数组

$testConfig = \think\facade\Config::get('test');

// 调用键名为profile下的数组
 
$testConfig = \think\facade\Config::get('test.profile');
 
 

 

  1. // 2.只调用键名 profile 下的数组
  2.  
  1. // 2.只调用键名 profile 下的数组
  2.  
  1. // 2.只调用键名 profile 下的数组
  2.  
  1. // 2.只调用键名 profile 下的数组
  2.  
    $profile = \think\facade\Config::get('test.profile');

  1. // 2.只调用键名 profile 下的数组
  2.  
    $profile = \think\facade\Config::get('test.profile');

上一篇: 无

下一篇: React项目 招聘APP 实时在线聊天室

177 人读过
立即登录, 发表评论.
0 条评论
文档导航