gpt4 book ai didi

php - 在 PHP 中调用 super 方法

转载 作者:IT王子 更新时间:2023-10-29 00:58:29 24 4
gpt4 key购买 nike

你能用 PHP 做这样的事情吗:

function foo()
{
super->foo();

// do something
}

最佳答案

是的,它被称为 parent::

public function foo()
{
parent::foo(); // this is not a static method call, even though it looks like one

//do something
}

关于php - 在 PHP 中调用 super 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3754952/

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