In PHP, what is a closure and why does it use the “use” identifier?

前端 未结 6 2044
醉酒成梦
醉酒成梦 2020-11-22 00:45

I\'m checking out some PHP 5.3.0 features and ran across some code on the site that looks quite funny:

public function getTotal($tax)
{
    $tot         


        
6条回答
  •  粉色の甜心
    2020-11-22 01:27

    A simpler answer.

    function ($quantity) use ($tax, &$total) { .. };

    1. The closure is a function assigned to a variable, so you can pass it around
    2. A closure is a separate namespace, normally, you can not access variables defined outside of this namespace. There comes the use keyword:
    3. use allows you to access (use) the succeeding variables inside the closure.
    4. use is early binding. That means the variable values are COPIED upon DEFINING the closure. So modifying $tax inside the closure has no external effect, unless it is a pointer, like an object is.
    5. You can pass in variables as pointers like in case of &$total. This way, modifying the value of $total DOES HAVE an external effect, the original variable's value changes.
    6. Variables defined inside the closure are not accessible from outside the closure either.
    7. Closures and functions have the same speed. Yes, you can use them all over your scripts.

    As @Mytskine pointed out probably the best in-depth explanation is the RFC for closures. (Upvote him for this.)

提交回复
热议问题