コードは言葉よりも優れ語る:相対的な名前空間とcall_user_func()
namespaces.php:
<?php
namespace foo;
use foo\models;
class factory
{
public static function create($name)
{
/*
* Note 1: FQN works!
* return call_user_func("\\foo\\models\\$name::getInstance");
*
* Note 2: direct instantiation of relative namespaces works!
* return models\test::getInstance();
*/
// Dynamic instantiation of relative namespaces fails: class 'models\test' not found
return call_user_func("models\\$name::getInstance");
}
}
namespace foo\models;
class test
{
public static $instance;
public static function getInstance()
{
if (!self::$instance) {
self::$instance = new self;
}
return self::$instance;
}
public function __construct()
{
var_dump($this);
}
}
namespace_test.php:I場合
<?php
require_once 'namespaces.php';
foo\factory::create('test');
としては、コメントcall_user_func()
の中に完全修飾名を使用してください。これは期待どおり動作しますが、もし私が相対ネームパックそれはクラスが見つかりませんでした–しかし、直接インスタンシエーションが動作します。私は何か、またはそのの奇妙なを逃していますか?
これは設計によるものだと思います。 'defined()'、 'constant()'などの関数にも同じ規則が適用されます。[このコメント](http://www.php.net/manual/en/function.defined.php#110530)をチェックしてください。 。 – Passerby