php的闭包是干嘛的

angryTom
angryTom原创
2023-04-07 09:58:012860浏览

闭包函数:临时创建一个没有名称的函数,经常作为回调函数来用。通俗的说就是:子函数可以使用父函数中的局部变量,这种行为叫做闭包。

推荐教程:PHP视频教程

1、匿名函数赋值

 $demo=function($str){
    echo $str;
  }
  $demo('hello,world');

2、闭包可以从父作用域中继承变量,任何此类型变量都应该用use语言结构传递进去。

 $message='hello';
  $example=function() use ($message){
    var_dump($message);
  };
  echo $example();

  结果:hello;

$example=function() use (&$message){
    var_dump($message);
  }
 

  结果:hello;

$message='world';
  echo $example();

  结果:world;

$example=function($arg) use ($message){
    var_dump($arg.' '.$message);
  }
  $example('hello');

  结果:hello world;

以上就是php的闭包是干嘛的的详细内容,更多请关注php中文网其它相关文章!

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。