請幫我在這裏。 我有一個PHP的調用方法從類到另一個類的孩子
class Foo() {
pubic function{
if($var = x){
do this;
}
else {
do that;
}
}
}
和其他類
class B extends A() {
public function {
#need to import method from Foo
#to execute on a varible in this class
}
}
可能有人請幫助我如何去這個問題。語言是PHP
你能描述一下你的進口是什麼意思? – gh123man
如果B擴展A,那麼你可以簡單地通過'$ b = new B()來調用A方法。 $ b-> methodDefinedInA($ var_from_B)' –
對不起,我的意思是我需要調用一個Foo類的方法 – OyugiK