为什么我收到PHP致命错误:未捕获错误:找不到类'MyClass'?

时间:2016-10-12 03:19:07

标签: php oop dependency-injection namespaces autoloader

这有效:

class MyClass {
    public $prop = 'hi';
}

class Container {
    static protected $registry = [];
    public static function get($key){
        if(!array_key_exists($key, static::$registry)){
            static::$registry[$key] = new $key;
        }
        return static::$registry[$key];
    }
}

$obj = Container::get('MyClass');
echo $obj->prop;
  

但是当我尝试将其分解为单个文件时,我收到错误。

  

PHP致命错误:未捕获错误:在/nstest/src/Container.php:9中找不到类'MyClass'

这是第9行:

static::$registry[$key] = new $key;

我疯狂的是,我可以对其进行硬编码,并且它有效,所以我知道命名空间是正确的。

static::$registry[$key] = new MyClass;
  

显然我不想硬编码,因为我需要动态值。我也试过了:

$key = $key::class;
static::$registry[$key] = new $key;

但是这给了我这个错误:

  

PHP致命错误:编译时:: class fetch

中不允许使用动态类名

我很茫然。 Clone these files to reproduce

.
├── composer.json
├── main.php
├── src
│   ├── Container.php
│   └── MyClass.php
├── vendor
│   └── ...
└── works.php

不要忘记自动加载器。

composer dumpautoload

composer.json

{
    "autoload": {
        "psr-4": {
            "scratchers\\nstest\\": "src/"
        }
    }
}

main.php

require __DIR__.'/vendor/autoload.php';
use scratchers\nstest\Container;

$obj = Container::get('MyClass');
echo $obj->prop;

的src / Container.php

namespace scratchers\nstest;

class Container {
    static protected $registry = [];
    public static function get($key){
        if(!array_key_exists($key, static::$registry)){
            static::$registry[$key] = new $key;
        }
        return static::$registry[$key];
    }
}

的src / MyClass.php

namespace scratchers\nstest;

class MyClass {
    public $prop = 'hi';
}

1 个答案:

答案 0 :(得分:8)

Thanks to @tkausl,通过将完全限定名称作为变量传递,我能够绕过动态相对命名空间。

require __DIR__.'/vendor/autoload.php';
use scratchers\nstest\Container;
use scratchers\nstest\MyClass;

$obj = Container::get(MyClass::class);
echo $obj->prop;