我想在myfunction2()中调用myfunction(),如何实现这一点。你能给我举个例子吗。
class myclass(){
function myfunction(){
#my code here
}
}
function myfunction2(){
# how can i get the function myfunction() here.
}
最合适的回答,由SO网友:Vincent 整理而成
删除myclass之后的()。然后在MyFunction 2中:
$obj = new myclass();
$obj->myfunction();