7. 配置

三种获取配置的方法

返回 /config/config.php 、/config/autoload/xxx.php 中的值

php 复制代码
<?php
namespace App\Controller;

use Hyperf\Config\Annotation\Value;
use Hyperf\Contract\ConfigInterface;
use Hyperf\Di\Annotation\Inject;
use Hyperf\HttpServer\Annotation\AutoController;
use function Hyperf\Config\config;

#[AutoController]
class ConfigController
{
  	// 1. 通过 注入 Hyperf\Contract\ConfigInterface 接口类来获取
    #[Inject]
    private ConfigInterface $config;

    // 2. 通过使用 Value 注解注入 对应配置项
    #[Value('foo.bar')]
    private $bar;

    public function index()
    {
        return $this->config->get('foo.bar');
    }
  
    public function value()
    {
        return $this->bar;
    }
  
    // 3. 通过 Config 全局函数
    public function config()
    {
      return config('foo.bar', 123);
    }
}
相关推荐
寰宇软件32 分钟前
PHP校园助手系统小程序
小程序·vue·php·uniapp
ac-er888814 小时前
Yii框架优化Web应用程序性能
开发语言·前端·php
寰宇软件17 小时前
PHP同城配送小程序
微信小程序·vue·php·uniapp
寰宇软件19 小时前
PHP企业IM客服系统
微信小程序·vue·php·uniapp
嵌入式小强工作室1 天前
esp32实现联网控制
开发语言·php
希望奇迹很安静1 天前
[极客大挑战 2019]PHP
开发语言·学习·web安全·php·ctf·buuctf
很酷的站长1 天前
怎么创建一个能在线测试php的html5网页?
开发语言·php·html5
Aimin20221 天前
Debian 上安装PHP
linux·debian·php
vortex51 天前
正则表达式基础与应用
正则表达式·php
互联网动态分析1 天前
PHP:从入门到进阶的全方位指南
php