Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | 知乎專欄 | Search | Email

2.3. Functions (函數)

2.3.1. 匿名函數(Anonymous functions)

匿名函數(Anonymous functions)也叫閉包涵數(closures)允許 臨時創建一個沒有指定名稱的函數。

閉包涵數也可以作為變數的值來使用。

			
<?php
$put = function($name)
{
    printf("%s\r\n", $name);
};

$put('World');
$put('PHP');
?>
			
			
			
<?php
$aaa = 111;
$func = function() use($aaa){ print $aaa; };
$aaa = 222;
$func(); // Outputs "111"
?>