Home > Database > Mysql Tutorial > body text

How to use php Closure class

怪我咯
Release: 2017-07-11 15:47:30
Original
1036 people have browsed it

Closure, Anonymous functions, also known as Anonymous functions, were introduced in php5.3. Anonymous function is a function without a defined name. Keep this in mind and you will be able to understand the definition of anonymous functions.

PHP Closure class was introduced before in PHPPredefined Interface, but it is not an interface, it is an internal final class. The Closure class is used to represent anonymous functions, and all anonymous functions are instances of the Closure class.

$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
);
Copy after login

The Closure class structure is as follows:

Closure::constructConstructor function used to prohibit instantiation
Closure::bind — Copy a closure and bind the specified $this object to the class scope.
Closure::bindTo — Copies the current closure object and binds the specified $this object and class scope.

Look at an example of binding $this object and scope:

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

In addition, PHP uses the magic methodinvoke() to turn a class into a closure:

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

The above is the detailed content of How to use php Closure class. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!