這篇文章主要介紹了PHP 匿名函數與注意事項詳細介紹的相關資料,匿名函數是PHP5.3引進了,php5.3不但引進了匿名函數還有更多更好多新的特性了,下面我們一起來了解PHP匿名函數與注意事項詳解,需要的朋友可以參考下
#PHP 匿名函數與注意事項
PHP5.2 以前:autoload , PDO 和MySQLi, 類型限制
PHP5.2:JSON 支援
PHP5.3:棄用的功能,匿名函數,新增魔術方法,命名空間,後期靜態綁定,Heredoc 和Nowdoc, const,三元運算符,Phar
PHP5.4:Short Open Tag, 陣列簡寫形式,Traits, 內建Web 伺服器,細節修改
PHP5.5:yield, list() 用於foreach, 細節修改
PHP5.6: 常數增強,可變函數參數,命名空間增強
現在基本上都使用PHP5.3以後的版本,但是感覺普遍一個現象就是很多新特性,過了這麼長時間,還沒有完全普及,在專案中很少用到。
看看PHP匿名函數:
'test' => function(){ return 'test' },
#PHP匿名函數的定義很簡單,就是給一個變數賦值,只不過這個值是個function。
以上是使用Yii框架來設定components文件,增加了一個test的設定。
什麼是PHP匿名函數?
看官方解釋:
匿名函數(Anonymous functions),也叫閉包函數(closures),允許 暫時建立一個沒有指定名稱的函數。最常用作回呼函數(callback)參數的值。當然,也有其它所應用的情況。
匿名函數範例
<?php echo preg_replace_callback('~-([a-z])~', function ($match) { return strtoupper($match[1]); }, 'hello-world'); // 输出 helloWorld ?>
# 閉包函數也可以當作變數的值來使用。 PHP 會自動把此種表達式轉換成內建類別 Closure 的物件實例。把一個closure 物件賦值給一個變數的方式與普通變數賦值的語法是一樣的,最後也要加上分號:
匿名函數變數賦值範例
<?php $greet = function($name) { printf("Hello %s\r\n", $name); }; $greet('World'); $greet('PHP'); ?>
閉包可以從父作用域繼承變數。任何此類變數都應該用 use 語言結構傳遞進去。
從父作用域繼承變數
<?php $message = 'hello' // 没有 "use" $example = function () { var_dump($message); }; echo $example(); // 继承 $message $example = function () use($message) { var_dump($message); }; echo $example(); // Inherited variable's value is from when the function // is defined, not when called $message = 'world'echo $example(); // Reset message $message = 'hello' // Inherit by-reference $example = function () use(&$message) { var_dump($message); }; echo $example(); // The changed value in the parent scope // is reflected inside the function call $message = 'world'echo $example(); // Closures can also accept regular arguments $example = function ($arg) use($message) { var_dump($arg . ' ' . $message); }; $example("hello"); ?>
#php中的匿名函數的注意事項
在php5.3以後,php加入匿名函數的使用,今天在使用匿名的時候出現錯誤,不能想php函數那樣宣告和使用,詳細看程式碼
##
$callback=function(){ return "aa"; }; echo $callback();
echo $callback(); $callback=function(){ return "aa"; };
function callback(){ return "aa"; } echo callback(); //aa echo callback(); //aa function callback(){ return "aa"; }
以上是PHP 匿名函數與注意事項詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!