时间:2021-07-01 10:21:17 帮助过:4人阅读
你那样是不行的
我这样是可以的
function test() {}$a = 'test';$a();
你那样是不行的
我这样是可以的
function test() {}$a = 'test';$a();
你可以通过类来实现(__call)
1.使用eval
$a = 'test';eval("function $a(){ echo 'function name is:'.__FUNCTION__;}");test();
class foo{ public function __call($name, $param){ if($name=='test'){ echo 'test'; }else{ echo 'name not exists'; } }}$obj = new foo();$a = 'test';$obj->$a();