use關鍵字在php中的使用(含程式碼)

2020-07-16 10:05:57

use關鍵字在php中的使用

1、use最常用在給類取別名,還可以用在閉包函數中,程式碼如下

<?php
function test() {
    $a = 'hello';
    return function ($a)use($a) {
        echo $a . $a;
    };
}
$b = test();
$b('world');//結果是hellohello

當執行test函數,test函數返回閉包函數,閉包函數中的use中的變數為test函數中的$a變數,當執行閉包函數後,輸出「hellohello」,由此說明函數體中的變數的優先順序是:use中的變數的優先順序比閉包函數引數中的優先順序要高。

2、use中的引數也可以使用參照傳遞的,程式碼如下

範例一

<?php
function test() {
    $a=18;
    $b="Ly";
    $fun = function($num, $name) use(&$a, &$b) {
        $a = $num;
        $b = $name;
    };
    echo "$b:$a<br/>";
    $fun(30,'wq');
    echo "$b:$a<br/>";
}
test();
//結果是Ly:18
//結果是wq:30

範例二

<?php
function index() {
$a = 1;
return function () use(&$a){
echo $a;
$a++;
};
}
$a = index();
$a();
$a();
$a();
$a();
$a();
$a();
//123456
?>

感謝大家的觀看,希望在學習了use關鍵字的用法以後可以獲得提升。

推薦教學:《PHP教學

以上就是use關鍵字在php中的使用(含程式碼)的詳細內容,更多請關注TW511.COM其它相關文章!