CakeFest 2024: The Official CakePHP Conference

Closure::call

(PHP 7, PHP 8)

Closure::callクロージャを束縛して呼び出す

説明

public Closure::call(object $newThis, mixed ...$args): mixed

クロージャを一時的に newThis に束縛し、 指定したパラメータでそれを呼び出します。

パラメータ

newThis

この呼び出しの間だけクロージャを束縛するオブジェクト。

args

クロージャに渡すパラメータがある場合は、ここで指定します。

戻り値

クロージャの戻り値を返します。

例1 Closure::call() の例

<?php
class Value {
protected
$value;

public function
__construct($value) {
$this->value = $value;
}

public function
getValue() {
return
$this->value;
}
}

$three = new Value(3);
$four = new Value(4);

$closure = function ($delta) { var_dump($this->getValue() + $delta); };
$closure->call($three, 4);
$closure->call($four, 4);
?>

上の例の出力は以下となります。

int(7)
int(8)
add a note

User Contributed Notes 2 notes

up
4
php-net at gander dot pl
2 years ago
You can also access private data:

<?php
class Value {
private
$value;

public function
__construct($value) {
$this->value = $value;
}
}

$foo = new Value('Foo');
$bar = new Value('Bar');

$closure = function () { var_dump($this->value); };
$closure->call($foo);
$closure->call($bar);
?>

Output:
string(3) "Foo"
string(3) "Bar"
up
4
sergey dot nevmerzhitsky at gmail dot com
7 years ago
Prior PHP 7.0 you can use this code:

<?php
$cl
= function($add) { return $this->a + $add; };

$cl->bindTo($newthis);
return
call_user_func_array($cl, [10]);
?>

But this bind the closure permanently! Also read the article for Closure::bindTo() about binding closures from static context.
To Top