如何从 php 中对象的另一个子函数调用子函数,如下所示:
class Object {
function Function1(){
return doSomething(data);
}
function Function3(){
function Function2(){
Function1(data);
}
}
}
?
我正在尝试,我的错误是Fatal error: Call to undefined function convertMonthStringtoNumber()
,convertMonthStringtoNumber()
在Function1()
示例代码中。