gpt4 book ai didi

php - 我如何从带有变量的类中调用方法?

转载 作者:行者123 更新时间:2023-12-05 00:20:10 25 4
gpt4 key购买 nike

给定这个类:

class Tacobell{

public function order_taco(){
echo "3 Tacos, thank you.";
}

public function order_burrito(){
echo "Cheesy bean and rice, please";
}

}

$lunch = new Tacobell;
$lunch->order_burrito();
$lunch->order_taco();

我该如何做这样的事情?

$myOrder = 'burrito';
$lunch->order_.$myOrder;

显然,该代码是胡说八道——但它显示了我试图做的比试图解释它更好。

也许我做错了。我想到了一个带有 switch 语句的方法,传入卷饼或炸 Jade 米饼,然后从那里调用正确的方法。但是我必须从一开始就知道结束,我可能有很多方法,我宁愿不必每次都更新 switch 语句。

谢谢!

最佳答案

这样的事情怎么样?

class Tacobell {
public function order_burrito() {
echo "Bladibla.\n";
}

public function order($item) {
if (method_exists($this, "order_$item")) {
$this->{'order_' . $item}();
} else {
echo "Go away, we don't serve $item here.\n";
}
}
}

您可以使用 $lunch->order('burrito'); 来调用它,这对我来说看起来干净多了。它将所有丑陋的东西都放在方法 Tacobell::order 中。

关于php - 我如何从带有变量的类中调用方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/936875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com