ReflectionClass::getTraitAliases
(PHP 5 >= 5.4.0, PHP 7, PHP 8)
ReflectionClass::getTraitAliases — トレイトのエイリアスの配列を返す
パラメータ
この関数にはパラメータはありません。
戻り値
新しいメソッド名をキー、その元の名前
("TraitName::original"
形式) を値とする配列を返します。
+add a note
User Contributed Notes 1 note
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>";
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google