<pre>
<?php
include "classes.inc";
// 보조 함수
function print_vars($obj)
{
foreach (get_object_vars($obj) as $prop => $val) {
echo "\t$prop = $val\n";
}
}
function print_methods($obj)
{
$arr = get_class_methods(get_class($obj));
foreach ($arr as $method) {
echo "\tfunction $method()\n";
}
}
function class_parentage($obj, $class)
{
if (is_subclass_of($GLOBALS[$obj], $class)) {
echo "Object $obj belongs to class " . get_class($$obj);
echo " a subclass of $class\n";
} else {
echo "Object $obj does not belong to a subclass of $class\n";
}
}
// 두 객체 인스턴스 생성
$veggie = new Vegetable(true, "blue");
$leafy = new Spinach();
// 객체에 대한 정보 출력
echo "veggie: CLASS " . get_class($veggie) . "\n";
echo "leafy: CLASS " . get_class($leafy);
echo ", PARENT " . get_parent_class($leafy) . "\n";
// veggie 프로퍼티 출력
echo "\nveggie: Properties\n";
print_vars($veggie);
// leafy 메쏘드
echo "\nleafy: Methods\n";
print_methods($leafy);
echo "\nParentage:\n";
class_parentage("leafy", "Spinach");
class_parentage("leafy", "Vegetable");
?>
</pre>
위 에제에서 중요한 점은 $leafy 객체가
Vegetable의 서브클래스인
Spinach 클래스의 인스턴스라는 점입니다. 그러므로
스크립트의 마지막 부분은 다음을 출력합니다:
[...]
Parentage:
Object leafy does not belong to a subclass of Spinach
Object leafy belongs to class spinach a subclass of Vegetable