• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • ReflectionClass::getTraitNames()

    (PHP 5 >= 5.4.0, PHP 7)

    返回这个类所使用 traits 的名称的数组

    说明

    publicReflectionClass::getTraitNames(void): array
    Warning

    本函数还未编写文档,仅有参数列表。

    参数

    此函数没有参数。

    返回值

    返回的数组的值包含了 trait 的名称。出现错误的情况下返回NULL

    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);