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);
    }
}
相关推荐
李钢蛋3 小时前
PHP函数---function_exists()详解
开发语言·php
不如喫茶去3 小时前
PHP将图片合成gif动图
php·php生成gif·图片生成gif·合成gif
全栈小55 小时前
【PHP】部署和发布PHP网站到IIS服务器
服务器·开发语言·php
饮啦冰美式5 小时前
php如何定位问题
开发语言·php
夜色呦8 小时前
实验室管理自动化:Spring Boot技术的应用
spring boot·自动化·php
夜色呦13 小时前
Spring Boot实验室管理系统:高效科研管理解决方案
数据库·spring boot·php
ac-er888814 小时前
PHP二维数组排序算法函数
算法·php·排序算法
2401_8570262315 小时前
Spring Boot技术在实验室信息管理中的应用
数据库·spring boot·php
liuxin3344556615 小时前
科研实验室的数字化转型:Spring Boot系统
数据库·spring boot·php
黑客Ash15 小时前
网络安全知识点
开发语言·php