Advertisement
wingman007

PHP Reflection getting started

Aug 7th, 2013
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.91 KB | None | 0 0
  1. <?php
  2.  
  3. class A
  4. {
  5.     public $one = '';
  6.     public $two = '';
  7.    
  8.     //Constructor
  9.     public function __construct()
  10.     {
  11.         //Constructor
  12.     }
  13.    
  14.     //print variable one
  15.     public function echoOne()
  16.     {
  17.         echo $this->one."\n";
  18.     }
  19.  
  20.     //print variable two  
  21.     public function echoTwo()
  22.     {
  23.         echo $this->two."\n";
  24.     }
  25. }
  26.  
  27. //Instantiate the object
  28. $a = new A();
  29.  
  30. //Instantiate the reflection object
  31. $reflector = new ReflectionClass('A');
  32.  
  33. //Now get all the properties from class A in to $properties array
  34. $properties = $reflector->getProperties();
  35.  
  36. $i =1;
  37. //Now go through the $properties array and populate each property
  38. foreach($properties as $property)
  39. {
  40.     //Populating properties
  41.     $a->{$property->getName()}=$i;
  42.     //Invoking the method to print what was populated
  43.     $a->{"echo".ucfirst($property->getName())}()."\n";
  44.    
  45.     $i++;
  46. }
  47.  
  48. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement