PHP 7 - Penutupan :: call ()
Closure::call()metode ditambahkan sebagai cara singkat untuk mengikat sementara lingkup objek ke penutupan dan memanggilnya. Ini jauh lebih cepat dalam performa dibandingkan denganbindTo dari PHP 5.6.
Contoh - Pra 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());
?>
Ini menghasilkan output browser berikut -
1
Contoh - PHP 7+
<?php
class A {
private $x = 1;
}
// PHP 7+ code, Define
$value = function() {
return $this->x;
};
print($value->call(new A));
?>
Ini menghasilkan output browser berikut -
1