Closure::callBinds and calls the closure Description
public mixed Closure::call
( object
$newthis
[, mixed $...
] )
Temporarily binds the closure to Parameters
Return ValuesReturns the return value of the closure. ExamplesExample #1 Closure::call example
<?php The above example will output: int(7) int(8) |