[PHP-users 15852]Re: クラスメソッドと可変関数、コールバック(call_user_func)について

箱田賢一 hakoda @ tabinomoto.com
2003年 6月 11日 (水) 18:13:36 JST


箱田と申します。

> <?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();
> ?>




PHP-users メーリングリストの案内