Mega Code Archive

 
Categories / Php / Class
 

Properties get Demo

<?php class Person {     function __get( $property ) {         $method = "get{$property}";         if ( method_exists( $this, $method ) ) {             return $this->$method();         }     }                                                                                      function getName() {         return "Joe";     }                                                                                      function getAge() {         return 31;     } } $p = new Person(); print $p->name; ?>