次のように、php のオブジェクトの別のサブ関数からサブ関数を呼び出すにはどうすればよいですか。
class Object {
function Function1(){
return doSomething(data);
}
function Function3(){
function Function2(){
Function1(data);
}
}
}
?
私はそれを試みていますが、私のエラーは、Fatal error: Call to undefined function convertMonthStringtoNumber()
サンプルコードにある.convertMonthStringtoNumber()
Function1()