ReflectionClass::__construct
(PHP 5, PHP 7)
ReflectionClass::__construct — 初始化 ReflectionClass 类
说明
1 | public ReflectionClass::__construct( mixed $argument ) |
初始化新的 ReflectionClass 对象。
参数
返回值
返回初始化完成后的 ReflectionClass 实例。
错误/异常
如果要反射的 Class 不存在,抛出异常 ReflectionException。
范例
Example #1 ReflectionClass 的基本用法
1 |
|
以上例程的输出类似于:
1 | Class [ <internal:Core> class Exception ] { |
参见
ReflectionObject::__construct() - Constructs a ReflectionObject
User Contributed Notes 6 notes
3 years ago
Example of usage:
1 | public static function getClassData($class) |
5 years ago
Running the following code on Windows Vista (I know, I know), PHP 5.3.9, the ReflectionClass constructor actually throws a ReflectionException when the desired class cannot be instantiated:
1 |
|
7 years ago
It's very useful to know that you can also use the ReflectionClass to inspect interfaces, even thouth Interfaces are not classes. Example: <?php interface Edible { public function eat(); } $refl = new ReflectionClass("Edible"); $methods = $refl->getMethods(); ?> [Edit by danbrown AT php DOT net - Contains a bugfix by (dbl AT bnet DOT com) on 18-AUG-2010 with the following message: "underline had to be removed for it to work ( new Reflection_Class -> new ReflectionClass )"]
danbettles at yahoo dot co dot uk
2 years ago
To reflect on a namespaced class in PHP 5.3, you must always specify the fully qualified name of the class - even if you've aliased the containing namespace using a "use" statement. So instead of: <?php use App\Core as Core; $oReflectionClass = new ReflectionClass('Core\Singleton'); ?> You would type:
1 |
|
5 years ago
Useful to know that if you pass a string into the construct and the class cannot be instantiated for some reason a SPL LogicException will be thrown. This code was ran on a Mac OS X 10.6.7, AMP, PHP 5.3+
1 |
|
The above code is useful to tell if the class was defined. You could also use another commentors method using Try Catch Exceptions. But, if you do not use try blocks much, the above function based method works just fine.
From there, you can than call:
$class = new ReflectionClass($classname);
if (! $class->isSubclassOf('PanelCommon'))
exit("ERROR: {$classname} must extends PanelCommon");
if (! $class->isUserDefined())
exit("ERROR: {$classname} must be user defined and not internal to PHP");
if (! $class->IsInstantiable())
exit("ERROR: {$classname} must be IsInstantiable and not an Interface or Abstract class");
if (! $class->hasMethod('home'))
exit("ERROR: {$classname} lacks required method/function home()");
````Forforth and so on.`