您好,登錄后才能下訂單哦!
PHP中的箭頭函數是什么?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
摘自 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
關鍵字便問變量。看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。