PHP匿名函數與注意事項詳解

來源:互聯網
上載者:User


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的配置。

在另一個模板頁面列印試試:

 

test ?>//test
OK.

什麼是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");
?>

以上常式的輸出類似於:


Notice: Undefined variable: message in /example.php on line 6
NULL
string(5) "hello"
string(5) "hello"
string(5) "hello"
string(5) "world"
string(11) "hello world"


php中的匿名函數的注意事項

在php5.3以後,php加入匿名函數的使用,今天在使用匿名的時候出現錯誤,不能想php函數那樣聲明和使用,詳細看代碼

$callback=function(){
  return "aa";
};
echo $callback();
 這是列印出來是aa;

看下面的例子:

echo $callback();
$callback=function(){
  return "aa";
};
 這是報錯了!報的錯誤時:

Notice: Undefined variable: callback in D:\php\www\zf2\public\04.php on line 9
Fatal error: Function name must be a string in D:\php\www\zf2\public\04.php on line 9

$callback為未聲明,

但是使用php自己聲明的函數都不會報錯的!

function callback(){
  return "aa";
}
echo callback();  //aa
 
echo callback();  //aa
function callback(){
  return "aa";
}
 這兩個都列印出來aa;

在使用匿名函數的時候,匿名函數當做變數,須提前聲明,js中也是這樣的!!!!!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.