PHP/Class/Properties get

Материал из Web эксперт
Перейти к: навигация, поиск

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