我需要在php
中创建函数,它可以使用一些变量来使函数名称满。例如:
$variable = 'edit';
function notifications($variable){
// here i want to call for example function 'edit_something()
$this-> $variable . _something(); // Here the function must be edit_something();
}
我有一个错误:
致命错误:调用未定义的函数_something()
请帮忙。