请输入您要查询的百科知识:

 

词条 get_parent_class
释义

get_parent_cla

(PHP 4, PHP 5)

get_parent_class -- 返回对象或类的父类名

说明

string get_parent_class ( [mixed obj] )

如果 obj 是对象,则返回对象实例 obj 所属类的父类名。

如果 obj 是字符串,则返回以此字符串为名的类的父类名。此功能是在 PHP 4.0.5 中增加的。

注: 自 PHP 5 起,如果在对象的方法内调用,则 obj 为可选项。

使用 get_parent_class()

<?php

class dad {

function dad()

{

// implements some logic

}

}

class child extends dad {

function child()

{

echo "I'm " , get_parent_class($this) , "'s son\";

}

}

class child2 extends dad {

function child2()

{

echo "I'm " , get_parent_class('child2') , "'s son too\";

}

}

$foo = new child();

$bar = new child2();

?>

输出:

I'm dad's son
I'm dad's son too

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/2/5 2:10:18