稱為箭頭函數的短閉包是PHP7.4
版本將帶來的期待已久的功能之一。它是由 Nikita Popov、Levi Morrison 和 Bob Weinand 提出的,你可以在此處閱讀原 RFC
摘自 Doctrine DBAL 的快速範例
//老辦法 $this->existingSchemaPaths = array_filter($paths, function ($v) use ($names) { return in_array($v, $names); }); // 使用箭頭函數的新方法 $this->existingSchemaPaths = array_filter($paths, fn($v) => in_array($v, $names));
fn
是關鍵字,而不是保留的函數名稱。rereturn
和use
關鍵字。$this
變數,作用域和 LSB 作用域自動系結。&
和 展開操作符 ...
//作用域範例 $discount = 5; $items = array_map(fn($item) => $item - $discount, $items); //型別提示 $users = array_map(fn(User $user): int => $user->id, $users); //展開操作符 function complement(callable $f) { return fn(...$args) => !$f(...$args); } //巢狀 $z = 1; $fn = fn($x) => fn($y) => $x * $y + $z; //有效的函數簽名 fn(array $x) => $x; fn(): int => $x; fn($x = 42) => $x; fn(&$x) => $x; fn&($x) => $x; fn($x, ...$rest) => $rest;
//現今 class Test { public function method() { $fn = fn() => var_dump($this); $fn(); // object(Test)#1 { ... } $fn = static fn() => var_dump($this); $fn(); // Error: Using $this when not in object context } } //也許在未來的某一天 class Test { private $foo; private $bar; fn getFoo() => $this->foo; fn getBar() => $this->bar; }
use
關鍵字便問變數。讓我知道你對這些更新有什麼看法,你最喜歡的收穫是什麼?
感謝閱讀。
以上就是PHP中箭頭函數的範例詳解的詳細內容,更多請關注TW511.COM其它相關文章!