摘要:這篇文章主要介紹了PHP反射機制用法,是PHP程式設計中比較重要的概念,需要的朋友可以參考下
一、反射是什麼
反射是操縱物件導向範式中元模型的API(php5)
透過ReflectionClass,我們可以得到Person類別的以下資訊:
1)常數Contants
2)屬性Property Names
3)方法Method Names靜態
4)屬性Static Properties
5)命名空間Namespace
6)Person類別是否為final或abstract
<? php classPerson { public $id; public $username; private $pwd; private $sex; public function run() { echo '<br/>running'; } } $class = new ReflectionClass('Person'); //建立反射类 $instance=$class->newInstance(); //实例化 print_r($instance); //Person Object ( [id] => [username] => [pwd:Person:private] => [sex:Person:private] => )$properties = $class->getProperties();foreach($properties as $property) { echo "<br/>" . $property->getName(); } //默认情况下,ReflectionClass会获取到所有的属性,private 和 protected的也可以。如果只想获取到private属性,就要额外传个参数: //$private_properties = $class->getProperties(ReflectionProperty::IS_PRIVATE); //可用参数列表: // ReflectionProperty::IS_STATIC // ReflectionProperty::IS_PUBLIC // ReflectionProperty::IS_PROTECTED // ReflectionProperty::IS_PRIVATE // 如果要同时获取public 和private 属性,就这样写:ReflectionProperty::IS_PUBLIC | ReflectionProperty::IS_PROTECTED。 // 通过$property->getName()可以得到属性名。$class->getMethods(); //获取方法(methods):通过getMethods() 来获取到类的所有methods。$instance->run(); //执行Person 里的方法getBiography //或者:$ec=$class->getmethod('run'); //获取Person 类中的getName方法$ec->invoke($instance);
以上是簡述php反射機制實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!