当前位置:首页 > PHP教程 > php应用 > 列表

PHP闭包实例解析

发布:smiling 来源: PHP粉丝网  添加日期:2021-04-11 16:22:55 浏览: 评论:0 

这篇文章主要介绍了PHP闭包,需要的朋友可以参考下

本文实例分析了PHP程序设计中闭包的概念机用法,分享给大家供大家参考。具体分析如下:

通常来说,闭包也就是PHP的匿名函数, 但是和函数不同的是,闭包可以通过use使用函数声明时所在作用域的变量的值。

具体形式如下:

  1. $a = function($arg1$arg2use ($variable) {  
  2. // 声明函数闭包到变量$a, 参数为$arg1, $arg2 ,该闭包需使用$variable变量 

具体用法实例如下:

  1. <?php 
  2. $result = 0; 
  3.    
  4. $one = function() 
  5. { var_dump($result); }; 
  6.    
  7. $two = function() use ($result
  8. { var_dump($result); }; // 可以认为 $two这个变量 本身记录了该函数的声明以及use使用的变量的值 
  9.    
  10. $three = function() use (&$result
  11. { var_dump($result); }; 
  12. //www.phpfensi.com 
  13. $result++; 
  14.    
  15. $one();  // outputs NULL: $result is not in scope 
  16. $two();  // outputs int(0): $result was copied 
  17. $three();  // outputs int(1) 
  18. ?> 

希望本文所述对大家PHP程序设计的学习有一定的借鉴与帮助作用。

Tags: PHP闭包

分享到: