|
class_parents(PHP 5 >= 5.1.0) class_parents — Return the parent classes of the given class ОписаниеThis function returns an array with the name of the parent classes of the given class. Список параметров
Возвращаемые значенияAn array on success, or FALSE on error. Список изменений
Примеры
Пример #1 class_parents() example
<?php Результатом выполнения данного примера будет что-то подобное: Array ( [foo] => foo ) Array ( [parent_of_not_loaded] => parent_of_not_loaded ) |
|||||