Detailed explanation and example code of PHP closures

高洛峰
Release: 2023-03-04 14:10:01
Original
853 people have browsed it

Closures and anonymous functions were introduced in PHP5.3.0.

A closure refers to a function that encapsulates the surrounding state when created. Even if the environment in which the closure is located no longer exists, the state encapsulated in the closure still exists.

Theoretically, closures and anonymous functions are different concepts. But PHP treats it as the same concept.

In fact, closures and anonymous functions are objects disguised as functions. They are instances of the Closure class.

Closures, like strings and integers, are first-class value types.

Create closure


        
Copy after login

The reason why we can call the $closure variable is because the value of this variable is a closure, and the closure object implements the __invoke() magic method. As long as there is () after the variable name, PHP will find and call the __invoke() method. PHP closures are usually used as callbacks of functions. The array_map() and preg_replace_callback() methods all use callback functions. This is the best time to use closures!

For example:


        
Copy after login

Get the result:

[2, 3, 4]

is closed Before packages, you could only create named functions individually and then reference that function by name. By doing this, the code execution will be slightly slower, and the implementation of the callback will be isolated from the usage scenario.


        
Copy after login

Attach state

Anonymous functions can not only be used as callbacks, but can also be attached to and encapsulated states for PHP.

In PHP, you must manually call the bindTo() method of the closure object or use the use keyword to attach the state to the PHP closure.


        
Copy after login

Get the result:

"Clay, get me sweet tea!"

PHP closures are objects, and each closure instance can Use the $this keyword to get the internal state of a closure. The default state of the closure object is useless, only the __invoke() method and the bindTo method.

We can use the bindTo() method to bind the internal state of the Closure object to other objects.

The second parameter of the bindTo() method: Its function is to specify the PHP class to which the object of the binding closure belongs. Therefore, a closure can access protected and private members of the object to which the closure is bound.

PHP frameworks often use the bindTo() method to map routing URLs to anonymous callback functions. By doing this, you can use the $this keyword to reference important application objects in this anonymous function.

Use bindTo() method to attach closure status

routes[$routePath] = $routeCallback->bindTo($this, __CLASS__); } public function dispatch($currentPath){ foreach($this->routes as $routePath => $callback){ if ($routePath === $currentPath) { $callback(); } } header('HTTP/1.1' . $this->responseStatus); header('Content-type: ' . $this->responseContentType); header('Content-length' . mb_strlen($this->responseBody)); echo $this->responseBody; } } 
Copy after login
addRoute('/user/nesfo', function () { $this->responseContentType = 'application/json; charset=utf8'; $this->responseBody = '{"name": "nesfo"}'; }); $app->dispatch('/user/nesfo');
Copy after login

The above is the collection of PHP closure information. We will continue to add relevant information in the future. Thank you for your support of this site!

For more articles related to PHP closure details and example codes, please pay attention to 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
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!