ReflectionClass::getTraitNames

(PHP >= 5.4.0)

ReflectionClass::getTraitNamesReturns an array of names of traits used by this class

說明

public array ReflectionClass::getTraitNames ( void )

Warning

此函式目前沒有參考文件;只有引數列表。

參數

此函式沒有參數。

回傳值

Returns an array with trait names in values. Returns NULL in case of an error.

add a note add a note

User Contributed Notes 1 note

up
3
emulienfou at gmail dot com
10 years ago
This remote return only the trait names from the current class.

If your class extends another class using your trait, you can't get the names. However, you can do something like :

<?php
$traitsNames
= [];
$recursiveClasses = function ($class) use(&$recursiveClasses, &$traitsNames) {
    if (
$class->getParentClass() != false) {
       
$recursiveClasses($class->getParentClass());
    }
    else {
       
$traitsNames = array_merge($traitsNames, $class->getTraitNames());
    }
};
$recursiveClasses($controllerClass);
To Top