萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> PHP匿名函數與注意事項詳解

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

匿名函數是PHP5.3引進來了,php5.3不但引進了匿名函數還有更多更好多新的特性了,下面我們一起來了解一下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的配置。

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

 

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中也是這樣的!!!!!

copyright © 萬盛學電腦網 all rights reserved