我有一堂课:
class demo {
function newDemo(){
$v=$this->checkDemo;
$v('hello'); // not working this reference, or how to do this?
}
function checkDemo($a){
...
return $a;
}
}
那么,如何在类中引用 checkDemo 函数方法呢?