(PHP 7, PHP 8)
Closure::call — Binds and calls the closure
Temporarily binds the closure to newThis, and calls
it with any given parameters.
newThisargsReturns the return value of the closure.
Example #1 Closure::call() example
<?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);
?>The above example will output:
int(7) int(8)