Closure クラスはじめに無名関数 を表すために使うクラスです。 無名関数は、Closure 型のオブジェクトを生成します。 このクラスにはメソッドが用意され、 生成した無名関数をさらにコントロールできるようになっています。
ここであげたメソッド以外にも、このクラスには
クラス概要
final
Closure
/* メソッド */
private __construct()
public static Closurenull bind(Closure
$closure , objectnull $newThis , objectstringnull $newScope = "static")public Closurenull bindTo(objectnull
$newThis , objectstringnull $newScope = "static")public mixed call(object
$newThis , mixed ...$args )public static Closure fromCallable(callable
$callback )
|