php Closure类的使用方法

closure,匿名函数,又称为anonymous functions,是php5.3的时候引入的。匿名函数就是没有定义名字的函数。这点牢牢记住就能理解匿名函数的定义了。

PHP Closure类之前在PHP匿名函数中介绍过,但它可不是Interface哦,它是一个内部的final类。Closure类是用来表示匿名函数的,所有的匿名函数都是Closure类的实例。

$func = function() {    echo 'func called';  };  var_dump($func); //class Closure#1 (0) { }  $reflect =new ReflectionClass('Closure');  var_dump(    $reflect->isInterface(), //false    $reflect->isFinal(), //true    $reflect->isInternal() //true  );

Closure类结构如下:

匿名函数 — 用于禁止实例化的匿名函数
匿名函数 — 复制一个闭包,绑定指定的$this对象和类作用域。
匿名函数 — 复制当前闭包对象,绑定指定的$this对象和类作用域。

看一个绑定$this对象和作用域的例子:

立即学习PHP免费学习笔记(深入)”;

class Lang  {    private $name = 'php';  }  $closure = function () {    return $this->name;  };  $bind_closure = Closure::bind($closure, new Lang(), 'Lang');  echo $bind_closure(); //php

另外,PHP使用匿名函数invoke()可以使类变成闭包:

class Invoker {    public function invoke() {return METHOD;}  }  $obj = new Invoker;  echo $obj(); //Invoker::invoke

© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享