PHP closure function details, php closed Function Details _ PHP Tutorial

Source: Internet
Author: User
PHP closure function details, php closed Function details. PHP closure function description: php closed function description: an anonymous function is also called a closure function (closures allows you to create a function that is not specified and is most often used as a callback function parameter value. PHP closure function details, php closed Function Details

Anonymous functionsIt is also called a closure function (closures allows you to create a function that is not specified and is most often used as the value of the callback function parameter.

The closure function does not have a function name. when function () is passed in to a variable, the defined variable is treated as a function.

  $cl = function($name){    return sprintf('hello %s',name);  }  echo $cli('fuck')`

You can call this function directly by defining it as the name of an anonymous function variable.

echo preg_replace_callback('~-([a-z])~', function ($match) {  return strtoupper($match[1]);}, 'hello-world');`

Use

$ Message = 'hello'; $ example = function () use ($ message) {var_dump ($ message) ;}; echo $ example (); // output hello $ message = 'world'; // output hello because the value of the inherited variable is defined by the function instead of echo $ example () when the function is called (); // reset to hello $ message = 'hello'; // Reference $ example = function () use (& $ message) {var_dump ($ message);} here );}; echo $ example (); // output hello $ message = 'world'; echo $ example (); // output the world // closure function is also used for normal value transfer $ message = 'hello'; $ example = function ($ data) use ($ message) {return "{$ data}, {$ message}" ;}; echo $ example ('world ');

Example

Class Cart {// define constants in the class using the const keyword, rather than the usual define () function. Const PRICE_BUTTER = 1.00; const PRICE_MILK = 3.00; const PRICE_EGGS = 6.95; protected $ products = []; public function add ($ product, $ quantity) {$ this-> products [$ product] = $ quantity;} public function getQuantity ($ product) {// is return isset ($ this-> products [$ product]) defined? $ This-> products [$ product]: FALSE;} public function getTotal ($ tax) {$ total = 0.0; $ callback = function ($ quantity, $ product) use ($ tax, & $ total) {// constant returns the constant value // _ class _ returns the CLASS name $ price = constant (_ class __. ": PRICE _". strtoupper ($ product); $ total + = ($ price * $ quantity) * ($ tax + 1.0) ;}; // array_walk () the function applies user-defined functions to each element in the array. In the function, the key and key values of the array are the parameter array_walk ($ this-> products, $ callback); // callback anonymous function return round ($ total, 2 );}} $ my_cart = new Cart (); $ my_cart-> add ('butter ', 1); $ my_cart-> add ('milk', 3 ); $ my_cart-> add ('eggs', 6); print ($ my_cart-> getTotal (0.05 ));

The above is related to the PHP closure function, and I hope it will help you learn it.

Articles you may be interested in:
  • Introduction to the PHP closure feature in Practical application
  • PHP Closure (Closure) usage details
  • PHP closure instance parsing
  • Analysis of closures (anonymous functions) in PHP
  • Php closures (Closure) anonymous functions

The callback anonymous function is also called a closure function (closures allows you to create a function that is not specified and is most often used as the value of the callback function parameter. Closure...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.