php 闭包

在PHP 5.3 以后,添加了闭包这个功能,代码实现如下:

$test = function($str){
  echo $str;       
}

$test('hello world');

//输出 hello world

 

posted @ 2014-06-21 21:32  蒋坞村长  阅读(106)  评论(0编辑  收藏  举报