欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP中Closure类的使用方法及详解

程序员文章站 2022-10-11 12:21:17
closure,匿名函数,又称为anonymous functions,是php5.3的时候引入的。匿名函数就是没有定义名字的函数。这点牢牢记住就能理解匿名函数的定义了。...

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

closure 类(php 5 >= 5.3.0)简介 用于代表 匿名函数 的类. 匿名函数(在 php 5.3 中被引入)会产生这个类型的对象,下面我们来看一下php closure类的使用方法及介绍。

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类结构如下:

closure::__construct — 用于禁止实例化的构造函数
closure::bind — 复制一个闭包,绑定指定的$this对象和类作用域。
closure::bindto — 复制当前闭包对象,绑定指定的$this对象和类作用域。

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

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

以上内容就是小编给大家分享的php中closure类的使用方法及详解,希望大家喜欢。