PHP閉包函數的使用

##PHP閉包函數的使用數組

匿名函數也叫閉包函數(closures容許建立一個沒有指定沒成的函數,最常常用做回調函數參數的值。閉包

__閉包函數__沒有函數名稱,直接在function()傳入變量便可 使用時將定義的變量看成函數來處理函數

$cl = function($name){
		return sprintf('hello %s',name);
	}
	echo $cli('fuck')`

直接經過定義爲匿名函數的變量名稱來調用this

echo preg_replace_callback('~-([a-z])~', function ($match) {
    return strtoupper($match[1]);
}, 'hello-world');`

###使用usecode

$message = 'hello';
$example = function() use ($message){
    var_dump($message);
};
echo $example();
//輸出hello
$message = 'world';
//輸出hello 由於繼承變量的值的時候是函數定義的時候而不是 函數被調用的時候
echo $example();
//重置爲hello
$message = 'hello';
//此處傳引用
$example = function() use(&$message){
  var_dump($message);
};
echo $example();
//輸出hello
$message = 'world';
echo $example();
//此處輸出world
//閉包函數也用於正常的傳值
$message = 'hello';
$example = function ($data) use ($message){
    return "{$data},{$message}";
};

echo $example('world');

###example繼承

class Cart{
    //在類裏面定義常量用 const 關鍵字,而不是一般的 define() 函數。
    const PRICE_BUTTER = 1.00;
    const PRICE_MILK   = 3.00;
    const PRICE_EGGS   = 6.95;

    protected $products = [];
    public function add($product,$quantity){
        $this->products[$product] = $quantity;
    }
    public function getQuantity($product){
        //是否認義了
        return isset($this->products[$product])?$this->products[$product]:FALSE;
    }
    public function getTotal($tax){
        $total = 0.0;
        $callback = function($quantity,$product) use ($tax , &$total){
            //constant 返回常量的值
            //__class__返回類名
            $price = constant(__CLASS__."::PRICE_".strtoupper($product));

            $total += ($price * $quantity)*($tax+1.0);
        };
        //array_walk() 函數對數組中的每一個元素應用用戶自定義函數。在函數中,數組的鍵名和鍵值是參數
        array_walk($this->products,$callback);
        //回調匿名函數
        return round($total,2);

    }
}

$my_cart = new Cart();
$my_cart->add('butter',1);
$my_cart->add('milk',3);
$my_cart->add('eggs',6);

print($my_cart->getTotal(0.05));
相關文章
相關標籤/搜索