官术网_书友最值得收藏!

Closure::call()

Binding an object scope with a closure is an efficient way to use a closure with different objects. At the same time, it is also a simple way to use different closures having different behaviors for an object in different places. This is because it binds the object scope with a closure at runtime without inheritance, composition, and so on.
However, previously we didn't have the Closure::call() method; we had something like this:

<?php
// Pre PHP 7 code
class Point{
private $x = 1;
private $y = 2;
}

$getXFn = function() {return $this->x;};
$getX = $getXFn->bindTo(new Point, 'Point');//intermediate closure
echo $getX(); // will output 1

But now with Closure::call(), the same code can be written as follows:

<?php
// PHP 7+ code
class Point{
private $x = 1;
private $y = 2;
}

// PHP 7+ code
$getX = function() {return $this->x;};
echo $getX->call(new Point); // outputs 1 as doing same thing

Both code snippets perform the same action. However, PHP7+ code is shorthand. In case you need to pass some parameter to closure functions, you can pass it after objects as follows:

<?php
// PHP 7+ closure call with parameter and binding

class Point{
private $x = 1;
private $y = 2;
}

$getX = function($margin) {return $this->x + $margin;};
echo $getX->call(new Point, 2); //outputs 3 by ($margin + $this->x)
主站蜘蛛池模板: 陇川县| 南漳县| 仙游县| 卓资县| 博白县| 建德市| 潢川县| 加查县| 涡阳县| 平江县| 曲麻莱县| 宿州市| 石首市| 遵义县| 民丰县| 左权县| 赣州市| 扎赉特旗| 平度市| 罗山县| 武汉市| 南澳县| 潜江市| 泸州市| 金堂县| 新津县| 恩施市| 张家港市| 四子王旗| 三门县| 额尔古纳市| 左云县| 濮阳县| 宁都县| 酉阳| 楚雄市| 会同县| 蛟河市| 日土县| 郴州市| 芷江|