php的闭包函数 function()use(){}

http://www.jb51.net/article/36269.htm

一.介绍

定义:将匿名函数在普通函数中当做参数传入,也可以被返回。这就实现了一个简单的闭包。use是为了连接闭包和外界变量(也就是为了可以引用函数外的变量,因为匿名函数不可以使用函数外的变量)

       php的闭包(Closure)也就是匿名函数。是PHP5.3引入的 

二.详解


闭包的几个优点:

1 减少foreach的循环的代码

比如手册http://php.net/manual/en/functions.anonymous.php 中的例子Cart

[php]  view plain  copy
 print ?
  1. // 一个基本的购物车,包括一些已经添加的商品和每种商品的数量。  
  2. // 其中有一个方法用来计算购物车中所有商品的总价格。该方法使用了一个closure作为回调函数。  
  3. class Cart  
  4. {  
  5.     const PRICE_BUTTER  = 1.00;  
  6.     const PRICE_MILK    = 3.00;  
  7.     const PRICE_EGGS    = 6.95;  
  8.    
  9.     protected   $products =array();  
  10.        
  11.     public function add($product,$quantity)  
  12.     {  
  13.         $this->products[$product] = $quantity;  
  14.     }  
  15.        
  16.     public function getQuantity($product)  
  17.     {  
  18.         return isset($this->products[$product]) ? $this->products[$product] :  
  19.                FALSE;  
  20.     }  
  21.        
  22.     public function getTotal($tax)  
  23.     {  
  24.         $total = 0.00;  
  25.            
  26.         $callback =  
  27.             function ($quantity,$product)use ($tax, &$total)  
  28.             {  
  29.                 $pricePerItem = constant(__CLASS__ ."::PRICE_" .  
  30.                     strtoupper($product));  
  31.                 $total += ($pricePerItem *$quantity) * ($tax + 1.0);  
  32.             };  
  33.            
  34.         array_walk($this->products,$callback);  
  35.         return round($total, 2);;  
  36.     }  
  37. }  
  38.    
  39. $my_cart =new Cart;  
  40.    
  41. // 往购物车里添加条目  
  42. $my_cart->add('butter', 1);  
  43. $my_cart->add('milk', 3);  
  44. $my_cart->add('eggs', 6);  
  45.    
  46. // 打出出总价格,其中有 5% 的销售税.  
  47. print $my_cart->getTotal(0.05) . "\n";  
  48. // The result is 54.29  
  49. ?>  


这里如果我们改造getTotal函数必然要使用到foreach 

2 减少函数的参数

[php]  view plain  copy
 print ?
  1. function html ($code ,$id="",$class=""){  
  2.    
  3. if ($id !=="")$id =" id = \"$id\"" ;  
  4.    
  5. $class = ($class !=="")?" class =\"$class\"":">";  
  6.    
  7. $open ="<$code$id$class";  
  8.    
  9. $close ="";  
  10.    
  11. return function ($inner ="")use ($open,$close){  
  12.    
  13. return "$open$inner$close";};  
  14.    
  15. }  
  16. 如果是使用平时的方法,我们会把inner放到html函数参数中,这样不管是代码阅读还是使用都不如使用闭包  


3 解除递归函数

[php]  view plain  copy
 print ?
  1.     $fib =function($n)use(&$fib) {  
  2.         if($n == 0 || $n == 1) return 1;  
  3.         return $fib($n - 1) + $fib($n - 2);  
  4.     };  
  5.    
  6.    echo $fib(2) . "\n";// 2  
  7.    $lie =$fib;  
  8.    $fib =function(){die('error');};//rewrite $fib variable   
  9.    echo $lie(5);// error   because $fib is referenced by closure  


注意上题中的use使用了&,这里不使用&会出现错误fib(fib(n-1)是找不到function的(前面没有定义fib的类型)

所以想使用闭包解除循环函数的时候就需要使用

[php]  view plain  copy
 print ?
  1. $recursive =function ()use (&$recursive){  
  2. // The function is now available as $recursive  
  3. }  


这样的形式

 

4 关于延迟绑定

如果你需要延迟绑定use里面的变量,你就需要使用引用,否则在定义的时候就会做一份拷贝放到use中

[php]  view plain  copy
 print ?
  1. $result = 0;  
  2.    
  3. $one =function()  
  4. { var_dump($result); };  
  5.    
  6. $two =function()use ($result)  
  7. { var_dump($result); };  
  8.    
  9. $three =function()use (&$result)  
  10. { var_dump($result); };  
  11.    
  12. $result++;  
  13.    
  14. $one();   // outputs NULL: $result is not in scope  
  15. $two();   // outputs int(0): $result was copied  
  16. $three();   // outputs int(1)  


使用引用和不使用引用就代表了是调用时赋值,还是申明时候赋值

你可能感兴趣的:(php,函数)