私はクラスを持っています:
class demo {
function newDemo(){
$v=$this->checkDemo;
$v('hello'); // not working this reference, or how to do this?
}
function checkDemo($a){
...
return $a;
}
}
では、クラス内で checkDemo 関数メソッドを参照するにはどうすればよいですか?