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