How to use and introduce the PHP Closure class

墨辰丷
Release: 2023-03-30 10:36:01
Original
1555 people have browsed it

This article mainly introduces how to use the PHP Closure class. Interested friends can refer to it. I hope it will be helpful to everyone.

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.

Closure class (PHP 5 >= 5.3.0) Introduction to the class used to represent anonymous functions. Anonymous functions (introduced in PHP 5.3) will generate objects of this type. Let's take a look at PHP How to use and introduce the Closure class.

PHP Closure class was introduced before in PHP predefined 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::__construct — Constructor used to prohibit instantiation
Closure::bind — Copy a closure, Binds 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 method __invoke() to turn a class into a closure:

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

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

PHP Mysql jQuery counts the current number of online users

php implements digital formatting, Function to add commas to every three digits of a number

PHP Chinese vertical conversion program

The above is the detailed content of How to use and introduce the 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!