closure PHP PHP 特點- 閉包 Nov 3, 2019 閉包 閉包是在創造時就封裝了內部狀態的函式,即使原有的環境已經消失了這個被封裝的狀態會中被寶存在閉包中 Example array_map閉包 123456<?php $numbersPlusOne = array_map(function ($number) { return $number + 1;}, [1,2,3]);print_r($numbersPlusOne);//輸出 --> [2,3,4] PHP閉包是一種物件,每一閉包實體都有其內部狀態,就跟其他PHP物件一樣可以用 $this 關鍵字存取 繫結狀態 Example 利用 use關鍵字繫結狀態到閉包 12345678910111213<?php function enclosePerson($name) { return function ($doCommand) use ($name) { return sprintf('%s, %s', $name, $doCommand); };}// 將"Clay"關閉在閉包中$clay = enclosePerson('Clay');// 使用指令呼叫閉包echo $clay('get me sweet tea!');// 輸出 --> "Clay, get me sweet tea!"