PHP的Reflection反射機制的介紹

來源:互聯網
上載者:User
這篇文章主要介紹了關於PHP的Reflection反射機制的介紹,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

PHP5添加了一項新的功能:Reflection。這個功能使得程式員可以

reverse-engineer[逆向工程] class, interface,function,method and extension[擴充庫支援]。

通過PHP代碼,就可以得到某object的所有資訊,並且可以和它互動。

如假設以下Person類:

 1 class Person {  2     /**  3      * For the sake of demonstration, we"re setting this private  4      */  5     private $_allowDynamicAttributes = false;  6       7     /**  8      * type=primary_autoincrement  9      */ 10     protected $id = 0; 11      12     /** 13      * type=varchar length=255 null 14      */ 15     protected $name; 16      17     /** 18      * type=text null19      */ 20     protected $biography; 21     public function getId() { 22         return $this->id; 23     } 24     public function setId($v) { 25         $this->id = $v; 26     } 27     public function getName() { 28         return $this->name; 29     } 30     public function setName($v) { 31         $this->name = $v; 32     } 33     public function getBiography() { 34         return $this->biography; 35     } 36     public function setBiography($v) { 37         $this->biography = $v; 38     } 39 }

通過ReflectionClass,我們可以得到Person類的以下資訊:

  • 常量 Contants

  • 屬性 Property Names

  • 方法 Method Names

  • 靜態屬性 Static Properties

  • 命名空間 Namespace

  • Person類是否為final或者abstract

只要把類名"Person"傳遞給ReflectionClass就可以了:

1 $class = new ReflectionClass('Person');

* 擷取屬性(Properties):

1 $properties = $class->getProperties();2 foreach($properties as $property) {3     echo $property->getName()."\n";4 }5 // 輸出:6 // _allowDynamicAttributes7 // id8 // name9 // biography

預設情況下,ReflectionClass會擷取到所有的屬性,private 和 protected的也可以。如果只想擷取到private屬性,就要額外傳個參數:

1 $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()可以得到屬性名稱,通過getDocComment可以得到寫給property的注釋。

 1 foreach($properties as $property) { 2     if($property->isProtected()) {  3         $docblock = $property->getDocComment();  4         preg_match('/ type\=([a-z_]*) /', $property->getDocComment(), $matches);  5         echo $matches[1]."\n";  6     }  7 }  8 // Output:  9 // primary_autoincrement 10 // varchar 11 // text

有點不可思議了吧。竟然連注釋都可以取到。

* 擷取方法(methods):通過getMethods() 來擷取到類的所有methods。返回的是ReflectionMethod對象的數組。

不再示範。

* 最後,通過ReflectionMethod來調用類裡面的method。

$data = array("id" => 1, "name" => "Chris", "biography" => "I am am a PHP developer");foreach($data as $key => $value) {    if(!$class->hasProperty($key)) {        throw new Exception($key." is not a valid property");    }     if(!$class->hasMethod("get".ucfirst($key))) {            throw new Exception($key." is missing a getter");    }     if(!$class->hasMethod("set".ucfirst($key))) {            throw new Exception($key." is missing a setter");    }     // Make a new object to interact with    $object = new Person();     // Get the getter method and invoke it with the value in our data array    $setter = $class->getMethod("set".ucfirst($key));        $ok = $setter->invoke($object, $value);     // Get the setter method and invoke it    $setter = $class->getMethod("get".ucfirst($key));        $objValue = $setter->invoke($object);     // Now compare    if($value == $objValue) {            echo "Getter or Setter has modified the data.\n";    } else {            echo "Getter and Setter does not modify the data.\n";   }}

以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.