e1
function test_1() { $a = 'php'; $func = function ($b) use ($a) { // $a = 'java'; echo $b.'_'.$a; }; return $func; } $test = test_1(); $test('hello');
以上結果會輸出 hello_php 那麼可以看到 $a 被作為了變數 通過use傳遞給了 匿名函數 func 作為引數使用;如果去掉$a = 'java'的註釋,那麼以上結果會輸出 hello_java
e2:將上面的函數改寫為
function test_2() { $a = 'php'; $func = function ($b) use ($a) { // $a = 'go'; echo $b.'_'.$a; }; $a = 'java'; return $func; } $test = test_2(); $test('hello');
以上結果會輸出 hello_php 說明在test_2中第二次為$a賦值的時候,並沒有傳遞的到 func函數裡面去。
同樣的如果去掉 $a = 'go';那麼以上結果會輸出 hello_go
e3:現在為$a 加上參照
function test_3() { $a = 'php'; $func = function ($b) use (&$a) { //$a = 'go'; echo $b.'_'.$a; }; $a = 'java'; return $func; } $test = test_3(); $test('hello');
以上結果會輸出 hello_java 說明在地址參照的時候 變數 a 的值會傳遞到 函數func裡面去。
同樣的如果去掉 $a = 'go';
那麼以上結果會輸出 hello_go;
以上三個簡單的測試,很明白的說明的閉包裡面引數的作用域。
在沒有使用地址參照的時候 匿名函數的變數值,不會隨著外部變數的改變而改變。(閉包的意義)
在使用了地址參照之後,引數值會被外部函數的引數值所改變。
以上就是PHP 閉包之變數作用域的詳細內容,更多請關注TW511.COM其它相關文章!