PHP 閉包之變量做用域

<p>  在項目中,不免會遇到閉包的形式,那麼在閉包中,變量的做用域究竟是怎麼樣的呢。下面有幾個簡單的例子。</p> <h3>e1</h3>php

function test_1()
{
    $a = 'php';
    $func =  function ($b) use ($a)
    {
       // $a = 'java';
        echo $b.'_'.$a;
    };
    return $func;

}
$test = test_1();
$test('hello');

<p>以上結果會輸出 hello_php 那麼能夠看到 $a 被做爲了變量 經過use傳遞給了 匿名函數 func 做爲參數使用;若是去掉$a = 'java'的註釋,那麼以上結果會輸出 hello_java</p> <h3>e2:將上面的函數改寫爲</h3>java

function test_2()
{
    $a = 'php';
    $func =  function ($b) use ($a)
    {
       // $a = 'go';
        echo $b.'_'.$a;
    };
    $a = 'java';
    return $func;
}
$test = test_2();
$test('hello');

<p>以上結果會輸出 hello_php 說明在test_2中第二次爲$a賦值的時候,並無傳遞的到 func函數裏面去。<br>一樣的若是去掉 $a = 'go';那麼以上結果會輸出 hello_go</p> <h3>e3:如今爲$a 加上引用</h3>segmentfault

function test_3()
{
    $a = 'php';
    $func =  function ($b) use (&amp;$a)
    {
        //$a = 'go';
        echo $b.'_'.$a;
    };
    $a = 'java';
    return $func;
}
$test = test_3();
$test('hello');

<p>以上結果會輸出 hello_java 說明在地址引用的時候 變量 a 的值會傳遞到 函數func裏面去。<br>一樣的若是去掉 $a = 'go';那麼以上結果會輸出 hello_go</p> <p>以上三個簡單的測試,很明白的說明的閉包裏面參數的做用域。 <br>在沒有使用地址引用的時候 匿名函數的變量值,不會隨着外部變量的改變而改變。(閉包的意義)<br>在使用了地址引用以後,參數值會被外部函數的參數值所改變</p>閉包

原文地址:https://segmentfault.com/a/1190000016250901函數

相關文章
相關標籤/搜索