array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.get-parent-class.php', 1 => 'get_parent_class', 2 => 'Retrieves the parent class name for object or class', ), 'up' => array ( 0 => 'ref.classobj.php', 1 => 'Функції Класів чи Об\'єктів', ), 'prev' => array ( 0 => 'function.get-object-vars.php', 1 => 'get_object_vars', ), 'next' => array ( 0 => 'function.interface-exists.php', 1 => 'interface_exists', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/classobj/functions/get-parent-class.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 4, PHP 5, PHP 7, PHP 8)
get_parent_class — Retrieves the parent class name for object or class
Retrieves the parent class name for object or class.
object_or_classThe tested object or class name.
Returns the name of the parent class of the class of which
object_or_class is an instance or the name.
If the object does not have a parent or the given class does not exist,
false will be returned.
| Версія | Опис |
|---|---|
| 8.3.0 |
Calling get_parent_class() without an argument now emits an
E_DEPRECATED warning;
previously, calling this function inside a class returned the name of that class.
|
| 8.0.0 |
The object_or_class parameter now only accepts objects or valid class names.
|
Приклад #1 Using get_parent_class()
<?php
class Dad {
function __construct()
{
// implements some logic
}
}
class Child extends Dad {
function __construct()
{
echo "I'm " , get_parent_class($this) , "'s son\n";
}
}
class Child2 extends Dad {
function __construct()
{
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