箱田と申します。
> <?php
> class hoge {
> function my_func1($func) {
> $func("bohe");
ここが
$this->$func("boge");
なのでは?
> }
> function my_func_core($str) {
> print("$str<br>\n");
> }
> function my_func_set() {
> $this->my_func1("my_func_core");
> }
> }
> $obj_hoge = new hoge;
> $obj_hoge->my_func_set();
> ?>