別のクラスの名前空間内にいる場合、class_existsとともにグローバルクラスが存在するかどうかをどのように確認できますか?例えば:
<?php
namespace Rvdv\Test\Example;
class ExampleClass
{
public function testNamespace()
{
// This says that it doesn't exists :(
print class_exists('\\Test');
}
}
ここで、classはグローバルに定義されたクラスです。