ReflectionFunction::invoke
(PHP 5, PHP 7, PHP 8)
ReflectionFunction::invoke — 関数を起動する
戻り値
起動した関数の結果を返します。
例
例1 ReflectionFunction::invoke() の例
<?php
function title($title, $name)
{
return sprintf("%s. %s\r\n", $title, $name);
}
$function = new ReflectionFunction('title');
echo $function->invoke('Dr', 'Phil');
?>
上の例の出力は以下となります。
Dr. Phil
注意
注意:
ReflectionFunction::invoke() は、 リファレンスが引数に期待されている場合は使えません。 その場合は、(引数リストにリファレンスを渡して) ReflectionFunction::invokeArgs() を代わりに使うべきです。
参考
- ReflectionFunction::export() - 関数をエクスポートする
- __invoke()
- call_user_func() - 最初の引数で指定したコールバック関数をコールする
+add a note
User Contributed Notes 1 note
spark at limao dot com dot br ¶
13 years ago
I know Reflections classes have a lot of power, but sometimes all we need is to store a annonymus function or even create a simple callback somewhere.
so here it is, the Callback class:
<?php
class Callback{
private $name = false;
public function Callback($obj,$call=false){
$name = array($obj);
if($call) $name[] = $call;
$this->name = $name;
}
public function invoke($params=array()){
return call_user_func_array($this->name,$params);
}
}
?>
Usage:
<?php
function sayName(){
return "goku";
}
$myVar = new Callback("sayName");
echo "Hi, I am ".$myVar->invoke()."!";
//also works with methods: new Callback($obj,"method");
?>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google