本类函数允许获取类和对象实例的信息。可以取得对象所属的类的名字,以及它的成员属性和方法。通过使用这些函数,不仅可以弄清楚一个对象类的全体成员,而且可以知道它的起源(例如,该对象类是哪个类的扩展)。
本函数库作为 PHP 内核的一部分,不用安装就能使用。
本扩展模块在
php.ini
中未定义任何配置选项。
在本例子中,先定义一个基础类和一个扩展类。基础类描述的是普通的蔬菜(Vegetable),它是否可食用(is_edible)以及它是什么颜色(what_color)。子类
Spinach
增加了“烹调”的方法(cook_it)和“获知它是否已被烹调了”的方法(is_cooked)。
例子 1. classes.inc
<?php
// 基类及其成员属性与方法
class
Vegetable
{
var
$edible
;
var
$color
;
function
Vegetable
(
$edible
,
$color
=
"green"
)
{
$this
->
edible
=
$edible
;
$this
->
color
=
$color
;
}
function
is_edible
()
{
return
$this
->
edible
;
}
function
what_color
()
{
return
$this
->
color
;
}
}
// Vegetable 类定义结束
// 扩展基类
class
Spinach
extends
Vegetable
{
var
$cooked
=
false
;
function
Spinach
()
{
$this
->
Vegetable
(
true
,
"green"
);
}
function
cook_it
()
{
$this
->
cooked
=
true
;
}
function
is_cooked
()
{
return
$this
->
cooked
;
}
}
// Spinach 类定义结束
?>
|
|
接着,从这些对象中创建两个对象实例,打印出它们的相关信息,包括它们的起源。还定义了一些实用函数,它们主要是为了让变量的输出好看些。
例子 2. test_script.php
<pre>
<?php
include
"classes.inc"
;
// utility functions
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
"
\t
function $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
"
;
}
}
// instantiate 2 objects
$veggie
= new
Vegetable
(
true
,
"blue"
);
$leafy
= new
Spinach
();
// print out information about objects
echo
"veggie: CLASS "
.
get_class
(
$veggie
) .
"\n"
;
echo
"leafy: CLASS "
.
get_class
(
$leafy
);
echo
", PARENT "
.
get_parent_class
(
$leafy
) .
"\n"
;
// show veggie properties
echo
"\nveggie: Properties\n"
;
print_vars
(
$veggie
);
// and leafy methods
echo
"\nleafy: Methods\n"
;
print_methods
(
$leafy
);
echo
"\nParentage:\n"
;
class_parentage
(
"leafy"
,
"Spinach"
);
class_parentage
(
"leafy"
,
"Vegetable"
);
?>
</pre>
|
上边例子中重点要注意的是对象
$leafy
是
Spinach
类的一个实例,而
Spinach
类是
Vegetable
类的一个子类,因此上边脚本的最后部分将会输出:
[...]
Parentage:
Object leafy does not belong to a subclass of Spinach
Object leafy belongs to class spinach a subclass of Vegetable
|
|