(PHP 7, PHP 8)
Closure::call — 綁定并調(diào)用閉包
暫時(shí)將閉包綁定到 newThis
,并使用任意給定的參數(shù)調(diào)用它。
newThis
在調(diào)用期間將閉包綁定到 object。
args
零個(gè)或多個(gè)參數(shù),他們將作為參數(shù)傳遞給閉包。
返回閉包的返回值。
示例 #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);
?>
以上例程會(huì)輸出:
int(7) int(8)