Properties get Demo : Properties get « Class « PHP






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;
?>


           
       








Related examples in the same category