我希望能够在其中创建方法__construct
我尝试通过以下方式使用 lambda
// This is what I am trying to achieve as an end result
class A extends Z{
public function __construct() {
parent::__construct()
}
public function myfunc() { // do something }
}
// This was an attempt to implement it
class A extends Z{
public function __construct() {
//example
if ($something_is_true) {
$this->myfunc = function () {}
}
parent::__construct()
}
}
我希望这能解释我想要达到的目标
编辑
我已将 URL 映射到函数,并且我希望有一些逻辑来确定类中存在哪些 URL 映射函数