PHP/Class/Properties get — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 07:00, 26 мая 2010
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;
?>