php闭包 回调函数,PHP|PHP实践-闭包
閉包和匿名函數(shù)在PHP5.3.0中引入的。
閉包是指:創(chuàng)建時封裝周圍狀態(tài)的函數(shù)。即使閉包所處的環(huán)境不存在了,閉包中封裝的狀態(tài)依然存在。
理論上,閉包和匿名函數(shù)是不同的概念。但是PHP將其視作相同概念。
實(shí)際上,閉包和匿名函數(shù)是偽裝成函數(shù)的對象。他們是Closure類的實(shí)例。
閉包和字符串、整數(shù)一樣,是一等值類型。
創(chuàng)建閉包
$clousre = function ($name) {
return 'Hello ' . $name;
};
echo $closure('nesfo');
我們之所以能調(diào)用$closure變量,是因?yàn)檫@個變量的值是一個閉包,而且閉包對象實(shí)現(xiàn)了__invoke()魔術(shù)方法。只要變量名后有(),PHP就會查找并調(diào)用__invoke()方法。
通常會把PHP閉包當(dāng)作函數(shù)的回調(diào)使用。
array_map(), preg_replace_callback()方法都會用到回調(diào)函數(shù),這是使用閉包的最佳時機(jī)!
舉個例子:
$numbersPlusOne = array_map(function ($number) {
return $number + 1;
}, [1, 2, 3]);
print_r($numbersPlusOne);
得到結(jié)果:
[2, 3, 4]
在閉包出現(xiàn)之前,只能單獨(dú)創(chuàng)建具名函數(shù),然后使用名稱引用那個函數(shù)。這么做,代碼執(zhí)行會稍微慢點(diǎn),而且把回調(diào)的實(shí)現(xiàn)和使用場景隔離了。
function incrementNum ($number) {
return $number + 1;
}
$numbersPlusOne = array_map('incrementNum', [1, 2, 3]);
print_r($numbersPlusOne);
附加狀態(tài)
匿名函數(shù)不止可以當(dāng)回調(diào)使用,還可以為PHP附加并封裝狀態(tài)。
PHP中,必須手動調(diào)用閉包對象的bindTo()方法或者使用use關(guān)鍵字,才能把狀態(tài)附加到PHP閉包上。
function enclosePerson ($name) {
return function ($doCommand) use ($name) {
return $name . ', ' . $doCommand;
}
}
$clay = enclosePerson('Clay');
echo $clay('get me sweet tea!');
得到結(jié)果:
"Clay, get me sweet tea!"
PHP閉包是對象,每個閉包實(shí)例都可以使用$this關(guān)鍵字獲取閉包的內(nèi)部狀態(tài)。閉包對象的默認(rèn)狀態(tài)沒什么用,只有__invoke()方法和bindTo方法而已。
我們可以使用bindTo()這個方法,將Closure對象的內(nèi)部狀態(tài)綁定到其它對象上。
bindTo()方法的第二個參數(shù):其作用是指定綁定閉包的那個對象所屬的PHP類。因此,閉包可以訪問綁定閉包的對象中受保護(hù)和私有的成員。
PHP框架經(jīng)常使用bindTo()方法把路由URL映射到匿名回調(diào)函數(shù)上。這么做可以在這個匿名函數(shù)中使用$this關(guān)鍵字引用重要的應(yīng)用對象。
使用bindTo()方法附加閉包狀態(tài)
class App
{
protected $routes = [];
protected $responseStatus = '200 OK';
protected $responseContentType = 'text/html';
protected $responseBody = 'Hello world';
public function addRoute($routePath, $routeCallback){
$this->routes[$routePath] = $routeCallback->bindTo($this, __CLASS__);
}
public function dispatch($currentPath){
foreach($this->routes as $routePath => $callback){
if ($routePath === $currentPath) {
$callback();
}
}
header('HTTP/1.1' . $this->responseStatus);
header('Content-type: ' . $this->responseContentType);
header('Content-length' . mb_strlen($this->responseBody));
echo $this->responseBody;
}
}
$app = new App();
$app->addRoute('/user/nesfo', function () {
$this->responseContentType = 'application/json; charset=utf8';
$this->responseBody = '{"name": "nesfo"}';
});
$app->dispatch('/user/nesfo');
參考
Modern PHP
總結(jié)
以上是生活随笔為你收集整理的php闭包 回调函数,PHP|PHP实践-闭包的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python3主函数返回值_Python
- 下一篇: 3dcaptcha php,php实现的