CakeFest 2024: The Official CakePHP Conference

ReflectionClass::getTraitAliases

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

ReflectionClass::getTraitAliasesReturns an array of trait aliases

Descrizione

public ReflectionClass::getTraitAliases(): array

Get the array of trait method aliases defined in the current class.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

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