- У меня есть метод getFoo, getBar
- У меня есть массив [Foo, bar]
- Я хочу в цикле получить метод динамически
пример:
class Item {
getFoo();...
getBar();...
}
$methods = ['Foo','Bar'];
...
foreach($methods as $method){
$methodName = 'get'.$method.'()';
$item->{$methodName}; //Notice: Undefined property: Item::$getFoo()
}
//"Item->$getFoo()" instead of "Item->getFoo()" probleme is $