ReflectionClass::getTraitAliases

(PHP >= 5.4.0)

ReflectionClass::getTraitAliasesReturns an array of trait aliases

Опис

public array ReflectionClass::getTraitAliases ( void )

Увага

This function is currently not documented; only its argument list is available.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

Returns an array with new method names in keys and original names (in the format "TraitName::original") in values. Returns NULL in case of an error.

add a note add a note

User Contributed Notes 1 note

up
1
dhairya dot coder at gmail dot com
8 years ago
trait A {
    public function smallTalk() {
        echo 'a';
    }
    public function bigTalk() {
        echo 'A';
    }
}

class Apple{
   
    use A {
        A::bigTalk as talk;
    }
}

$obj=new ReflectionClass('Apple');
echo "<pre>";
var_dump($obj->getTraitAliases()); 
echo "</pre>";
To Top