|
class_uses(Информация о версии неизвестна, возможно, только в SVN) class_uses — Return the traits used by the given class ОписаниеThis function returns an array with the names of the traits that the given class uses. This does however not include any traits used by a parent class. Список параметров
Возвращаемые значенияAn array on success, or FALSE on error. Примеры
Пример #1 class_uses() example
<?php Результатом выполнения данного примера будет что-то подобное: Array ( [foo] => foo ) Array ( [foo] => foo ) Array ( [trait_of_not_loaded] => trait_of_not_loaded ) Смотрите также
|
|