首页  >  问答  >  正文

如何在PHP中获取传入对象的构造函数类名?

假设我有以下的类结构:

class Logger {
    public function __construct(string $channel) {    
        // Logger初始化工作
    }
}

class UsingLogger {
    private Logger $logger;
    
    public function __construct(Logger $logger) { 
        $this->logger = $logger;
    }
}


$logger = new Logger("UsingLogger");
$usingLogger = new UsingLogger($logger);

这个代码可以正常工作。在这种情况下,通道的名称就是类的名称。然而,我想使用PHP DI(https://php-di.org/doc/php-definitions.html#autowired-objects)来解决这个问题。问题是它无法解决这种情况,因为它不知道传递给日志记录器的类名。

示例PhpDI定义

return [
        "SomeLoggerInterface" => autowire(Logger::class)->constructorParameter("channel", // 在这里获取类的名称。在这种情况下,它将是 "UsingLogger")
    ]

希望这样说得清楚。如果需要更多上下文,请告诉我。

我已经概述了我的步骤

P粉413307845P粉413307845426 天前595

全部回复(1)我来回复

  • P粉697408921

    P粉6974089212023-09-12 09:14:07

    我假设你已经安装了DI包。

    <?php
    
    declare(strict_types=1);
    
    require_once 'vendor/autoload.php';
    
    final class Logger
    {
        public function __construct(private readonly string $channel) {}
    }
    
    final class UsingLogger {
        public function __construct(private readonly Logger $logger) {}
    }
    
    $container = new DI\Container([
        'channel' => 'UsingLogger',
        'Logger' => DI\create()->constructor(DI\get('channel')),
        'UsingLogger' => DI\create()->constructor(DI\get('Logger')),
    ]);
    
    final class TestClass
    {
        public function __construct(UsingLogger $usingLogger) {
            var_dump($usingLogger);
        }
    }
    
    new TestClass($container->get('UsingLogger'));
    
    

    运行这个脚本会产生以下输出:

    php index.php
    path/to/script.php:25:
    class UsingLogger#20 (1) {
      private readonly Logger $logger =>
      class Logger#25 (1) {
        private readonly string $channel =>
        string(11) "UsingLogger"
      }
    }

    也许你还应该使用接口。希望这对你有帮助。

    回复
    0
  • 取消回复