Fermeture PHP :: appel ()
Closure::call() de PHP 7 a de meilleures performances, liant dynamiquement une fonction de fermeture à une nouvelle instance d'objet et appelant la fonction.
Instance
<?php class A { private $x = 1; } // PHP 7 之前版本定义闭包函数代码 $getXCB = function() { return $this->x; }; // 闭包函数绑定到类 A 上 $getX = $getXCB->bindTo(new A, 'A'); echo $getX(); echo "<br/>"; // PHP 7+ 代码 $getX = function() { return $this->x; }; echo $getX->call(new A); ?>
Le résultat de l'exécution du programme ci-dessus est :
1 1