用法
get_parent_class ( $object );
定义和用法
它检索对象或类的父类名称。
参数
Sr.No | 参数及说明 |
---|---|
1 |
object(Required) 被测试的对象或类名。 |
返回值
它返回当前脚本中已声明类的名称的数组。
示例
下面是这个函数的用法~
<?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
相关用法
- PHP get_parent_class()用法及代码示例
- PHP get_resource_type()用法及代码示例
- PHP get_class()用法及代码示例
- PHP get_declared_interfaces()用法及代码示例
- PHP get_resource_id()用法及代码示例
- PHP get_class_methods()用法及代码示例
- PHP get_headers()用法及代码示例
- PHP get_class_vars()用法及代码示例
- PHP get_object_vars()用法及代码示例
- PHP get_browser()用法及代码示例
- PHP get_html_translation_table()用法及代码示例
- PHP get_defined_vars()用法及代码示例
- PHP get_called_class()用法及代码示例
- PHP get_declared_classes()用法及代码示例
- PHP get_meta_tags()用法及代码示例
- PHP getimagesizefromstring()用法及代码示例
- PHP getservbyport()用法及代码示例
- PHP gethostnamel()用法及代码示例
- PHP getcwd()用法及代码示例
- PHP getcwd( )用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Function get_parent_class()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。