|
class_implements(PHP 5 >= 5.1.0) class_implements — Return the interfaces which are implemented by the given class ОписаниеThis function returns an array with the names of the interfaces that the given class and its parents implement. Список параметров
Возвращаемые значенияAn array on success, or FALSE on error. Список изменений
Примеры
Пример #1 class_implements() example
<?php Результатом выполнения данного примера будет что-то подобное: Array ( [foo] => foo ) Array ( [interface_of_not_loaded] => interface_of_not_loaded ) Смотрите также
|
|||||