PHP Class/Object 函數(shù)參考手冊(cè)
get_parent_class() 函數(shù)返回對(duì)象或類(lèi)的父類(lèi)名
get_parent_class ( $object );
它檢索對(duì)象或類(lèi)的父類(lèi)名稱(chēng)。
如果 object 是對(duì)象,則返回對(duì)象實(shí)例 object 所屬類(lèi)的父類(lèi)名。
如果 object 是字符串,則返回以此字符串為名的類(lèi)的父類(lèi)名。此功能是在 PHP 4.0.5 中增加的
序號(hào) | 參數(shù)及說(shuō)明 |
---|---|
1 | object(必需) 被測(cè)對(duì)象或類(lèi)名。 |
它返回當(dāng)前腳本中已聲明類(lèi)的名稱(chēng)的數(shù)組。
以下是此函數(shù)的用法-
<?php class f1 { function f1() { //實(shí)現(xiàn)一些邏輯 } } 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(); ?>測(cè)試看看?/?
它將產(chǎn)生以下結(jié)果-
I'm f1's son I'm f1's son too