Heim > Artikel > Backend-Entwicklung > Wie man anonyme PHP-Funktionen und Use-Klauseln verwendet
Sehen Sie sich den Code unten an
function test() { $param2 = 'every'; // 返回一个匿名函数 return function ($param1) use ($param2) { // use子句 让匿名函数使用其作用域的变量 $param2 .= 'one'; print $param1 . ' ' . $param2; }; } $anonymous_func = test(); $anonymous_func('hello');
Die Ausgabe ist „Hallo Welt“
$param1 und $param2 sind Abschlussvariablen
Die folgende Methode gibt „Hallo alle zusammen“ aus
function test() { $param2 = 'everyone'; $func = function ($param1) use ($param2) { // use子句 让匿名函数使用其父作用域的变量 print $param1 . ' ' . $param2; }; $param2 = 'everybody'; return $func; } $anonymous_func = test(); $anonymous_func('hello');
Die folgende Methode gibt „Hallo alle zusammen“ aus.
Es gibt eine weitere -Referenz in $param2
function test() { $param2 = 'everyone'; $func = function ($param1) use (&$param2) { // use子句 让匿名函数使用其父作用域的变量 print $param1 . ' ' . $param2; }; $param2 = 'everybody'; return $func; } $anonymous_func = test(); $anonymous_func('hello');
Das obige ist der detaillierte Inhalt vonWie man anonyme PHP-Funktionen und Use-Klauseln verwendet. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!