三种获取配置的方法
返回 /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);
}
}