PHP 7 - Chiusura :: call ()

Closure::call()viene aggiunto come scorciatoia per associare temporaneamente l'ambito di un oggetto a una chiusura e richiamarlo. È molto più veloce in termini di prestazioni rispetto abindTo di PHP 5.6.

Esempio: pre PHP 7

<?php
   class A {
      private $x = 1;
   }

   // Define a closure Pre PHP 7 code
   $getValue = function() {
      return $this->x;
   };

   // Bind a clousure
   $value = $getValue->bindTo(new A, 'A'); 

   print($value());
?>

Produce il seguente output del browser:

1

Esempio: PHP 7+

<?php
   class A {
      private $x = 1;
   }

   // PHP 7+ code, Define
   $value = function() {
      return $this->x;
   };

   print($value->call(new A));
?>

Produce il seguente output del browser:

1