gpt4 book ai didi

php - 在我背后悄悄调用父方法

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:39:33 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Enforcing call to parent method

我有这样一个类

abstract class theme{

abstract function header(){
// do stuff here
}

abstract function footer(){
// do stuff here

}

}

所以所有的子类都必须有这两个方法:

class Atheme extends theme{

function header(){
// do stuff here

echo ..
}

function footer(){
// do stuff here

echo ..
}

}

现在当我调用这些方法之一时:

$atheme = new Atheme;

$atheme->header();

我想让子类的header()方法自动调用父类的header()方法,而不需要在子类中专门调用parent::header()。

这可能吗?

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