get_parent_class
(PHP 4, PHP 5)
get_parent_class -- オブジェクトの親クラスの名前を取得する
説明
string
get_parent_class ( [mixed object] )
オブジェクトあるいはクラスの親クラスの名前を取得します。
パラメータ
object
調べたいオブジェクトあるいはクラスの名前。
返り値
object
がインスタンスあるいは名前であるクラスの親クラス名を返します。
オブジェクトの外部からこのパラメータを省略してコールすると、
この関数は FALSE を返します
例
例 1. get_parent_class() の使用例
<?php
class dad { function dad() { // ロジックを実装する } }
class child extends dad { function child() { echo "I'm " , get_parent_class($this) , "'s son\n"; } }
class child2 extends dad { function child2() { echo "I'm " , get_parent_class('child2') , "'s son too\n"; } }
$foo = new child(); $bar = new child2();
?>
|
上の例の出力は以下となります。 I'm dad's son
I'm dad's son too |
|