PHP get_parent_class()函数
语法
get_parent_class ( $object );
定义和使用
它为对象或类检索父类名。
参数
序号 | 参数和描述 |
---|---|
1 | $object(必填) 被测试的对象或类名。 |
返回值
它返回当前脚本中已声明的类的名称数组。
示例
以下是使用该函数的示例-
<?php
class f1 {
function f1() {
// implements some logic
}
}
class child extends f1 {
function child() {
echo "I'm " , get_parent_class(this) , "'s son \n";
}
}
class child2 extends f1 {
function child2() {
echo "I'm " , get_parent_class('child2') , "'s son too \n";
}
}foo = new child();
$bar = new child2();
?>
它将产生以下结果−
I'm f1's son
I'm f1's son too