首頁 >後端開發 >php教程 >學習 PHP 5.3 的閉包: function() use(&$param)

學習 PHP 5.3 的閉包: function() use(&$param)

WBOY
WBOY原創
2016-07-25 09:07:421179瀏覽
  1. function closureCreater(){

  2. $x =1;
  3. return function($fun=null) use(&$x){//按引用传值
  4. echo "
    ".$x++;
  5. $fun and $fun();
  6. };
  7. }

  8. $x = "hello world";

  9. $test = closureCreater();
  10. $test();
  11. $test(function(){ echo "closure test one"; });
  12. $test(function(){ echo "closure test two"; });
  13. $test(function() use($x){ echo "
    ".$x;});
  14. //将函数保存为数组元素
  15. $x = 'outer param.';
  16. $arr = array();
  17. $arr[] = function($str)use($x){ return $str.$x; };
  18. echo $arr[0]('test fun in arr,'); //test fun in arr,outer param.
  19. ?>

复制代码


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn