标签:bsp 语法 dump blog ext2 闭包 ext use ext3
$arg = ‘text‘;
$test = function () use ($arg){
 var_dump($arg);
};
$test();
//输出text
$arg = ‘text‘;
$test = function () use ($arg){
 var_dump($arg);
 $arg = ‘text2‘;
};
$test();  //输出text
$arg = ‘text3‘;
$test(); //输出text
php【闭包语法】function() use ($arg) {}
标签:bsp 语法 dump blog ext2 闭包 ext use ext3
原文地址:http://www.cnblogs.com/wy04313/p/6186465.html