闭包函数 到底是什么

参考来源 

https://www.cnblogs.com/web21/p/6509774.html


匿名函数    也叫   闭包函数(

closures允许创建一个没有指定名称的函数,最经常用作回调函数参数的值。

闭包函数没有函数名称,直接在function()传入变量即可 使用时  将定义的 变量  当作函数   来处理

$a =function()use($b) { 

}



闭包的几个作用:

1 减少foreach的循环的代码

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


// 一个基本的购物车,包括一些已经添加的商品和每种商品的数量。 

// 其中有一个方法用来计算购物车中所有商品的总价格。该方法使用了一个closure作为回调函数。 

class Cart 

const PRICE_BUTTER = 1.00; 

const PRICE_MILK = 3.00; 

const PRICE_EGGS = 6.95; 

protected $products =array(); 

public function add($product,$quantity) 

$this->products[$product] = $quantity; 

public function getQuantity($product) 

return isset($this->products[$product]) ? $this->products[$product] : 

FALSE; 

public function getTotal($tax) 

$total = 0.00; 

$callback = 

function ($quantity,$product)use ($tax, &$total) 

$pricePerItem = constant(__CLASS__ ."::PRICE_" . 

strtoupper($product)); 

$total += ($pricePerItem *$quantity) * ($tax + 1.0); 

}; 

array_walk($this->products,$callback); 

return round($total, 2);; 

$my_cart =new Cart; 

// 往购物车里添加条目 

$my_cart->add('butter', 1); 

$my_cart->add('milk', 3); 

$my_cart->add('eggs', 6); 

// 打出出总价格,其中有 5% 的销售税. 

print $my_cart->getTotal(0.05) . "\n"; 

// The result is 54.29 

?>




例子1  结束 后!

2 减少函数的参数

function html ($code ,$id="",$class=""){ 

if ($id !=="")$id =" id = \"$id\"" ; 

$class = ($class !=="")?" class =\"$class\"":">"; 

$open ="<$code$id$class"; 

$close =""; 

return function ($inner ="")use ($open,$close){ 

return "$open$inner$close";}; 


助力你理解一下 :

$c= html($code,$id,$class);  // 返回 func($inner="")

$k = $c($inner);


其实就是这样的 :两次参数分开传 利用返回匿名函数 第二次传参数 可以在第二阶段再传!避免第一传输 四个参数 冗余 层级不分明 等劣势

其实上面 不就是:


微凉说: 这样做可以在 闭包函数(也就是匿名函数)中保存一些参数,就不用每次都传参;

$k = html($code,$id,$class)($inner)



如果是使用平时的方法,我们会把inner放到html函数参数中,这样不管是代码阅读还是使用都不如使用闭包




$cl = function($name){

  return  sprintf('hello %s',name);

}   //  这不就是 go 里面的万物皆变量吗??

echo   $cli('fuck')`




请   记住上面这个   例子 仿佛 定义了 一个cli 函数 但是 不是!

直接通过定义为匿名函数的变量名称来调用

echo    preg_replace_callback( '~-([a-z])~',  function($match) {

  returnstrtoupper($match[1]);

}, 'hello-world');`


使用use


$message= 'hello';

$example= function() use($message){

  var_dump($message);

};

echo$example();

//输出hello

$message= 'world';

//输出hello 因为继承变量的值的时候是函数定义的时候而不是 函数被调用的时候

echo$example();

//重置为hello

$message= 'hello';

//此处传引用

$example= function() use(&$message){

 var_dump($message);

};

echo$example();

//输出hello

$message= 'world';

echo$example();

//此处输出world

//闭包函数也用于正常的传值

$message= 'hello';

$example= function($data) use($message){

  return"{$data},{$message}";

};


echo$example('world');

example

classCart{

  //在类里面定义常量用 const 关键字,而不是通常的 define() 函数。

  constPRICE_BUTTER = 1.00;

  constPRICE_MILK  = 3.00;

  constPRICE_EGGS  = 6.95;


  protected$products= [];

  publicfunctionadd($product,$quantity){

    $this->products[$product] = $quantity;

  }

  publicfunctiongetQuantity($product){

    //是否定义了

    returnisset($this->products[$product])?$this->products[$product]:FALSE;

  }

  publicfunctiongetTotal($tax){

    $total= 0.0;

    $callback= function($quantity,$product) use($tax, &$total){

      //constant 返回常量的值

      //__class__返回类名

      $price= constant(__CLASS__."::PRICE_".strtoupper($product));


      $total+= ($price* $quantity)*($tax+1.0);

    };

    //array_walk() 函数对数组中的每个元素应用用户自定义函数。在函数中,数组的键名和键值是参数

    array_walk($this->products,$callback);

    //回调匿名函数

    returnround($total,2);


  }

}



$my_cart= newCart();

$my_cart->add('butter',1);

$my_cart->add('milk',3);

$my_cart->add('eggs',6);



print($my_cart->getTotal(0.05));

以上就是关于PHP闭包函数的相关内容,希望对大家的学习有所帮助。

你可能感兴趣的:(闭包函数 到底是什么)