PHP 手册中的匿名函数关联用法分析-php教程

资源魔 30 0

匿名函数

匿名函数 也叫 闭包函数 (closures),能够创立一个不指命名称的函数,普通作用于回调函数 (callback) 参数的值。匿名函数量前是经过 Closure 类来完成的。

1. 咱们平常可能用到的相干函数举例

<?php
//array_reduce 将回调函数 callback 迭代地作用到 array 数组中的每个单位中,从而将数组简化为繁多的值。
$array = [1, 2, 3, 4];
$str = array_reduce($array, function ($return_str, $value) {
    $return_str = $return_str . $value;  //层层迭代
    return $return_str;
});
//1.第一次迭代  $return_str = '',value = '1' 前往 '1'
//2.第二次迭代  $return_str = '1',value = '2'  前往 '12'
//3.第三次迭代  $return_str = '12',value = '3'  前往 '123'
//4.第四次迭代  $return_str = '123',value = '4'  前往 '1243'
var_dump($str);
// string('12345')
// array_walk — 应用用户自界说函数对数组中的每一个元素做回调解决 
$fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple");
function test_alter(&$item1, $key, $prefix)
{
    $item1 = "$prefix: $item1";
}
function test_print($item2, $key)
{
    echo "$key. $item2<br/>\n";
}
echo "Before ...:\n";
array_walk($fruits, 'test_print');
array_walk($fruits, 'test_alter', 'fruit');
echo "... and after:\n";
array_walk($fruits, 'test_print');
?>

2. 实际营业用法

<?php
// 一个根本的购物车,包罗一些曾经增加的商品以及每一种商品的数目。
// 此中有一个办法用来较量争论购物车中一切商品的总价钱,该办法使
// 用了一个 closure 作为回调函数。
class Cart
{
    const PRICE_BUTTER  = 1.00;
    const PRICE_MILK    = 3.00;
    const PRICE_EGGS    = 6.95;
    protected   $products = array();
    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.00;
        $callback =
            function ($quantity, $product) use ($tax, &$total)
            {
                //界说一个回调函数 掏出 以后商品的价钱
                $pricePerItem = constant(__CLASS__ . "::PRICE_" .
                    strtoupper($product));
                $total += ($pricePerItem * $quantity) * ($tax + 1.0);
            };
        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);
// 打出出总价钱,此中有 5% 的发卖税.
print $my_cart->getTotal(0.05) . "\n";
// 最初后果是 54.29
?>

---- 以上内容来自民间手册,可供参考

以上就是PHP 手册中的匿名函数联系关系用法剖析的具体内容,更多请存眷资源魔其它相干文章!

标签: php php开发教程 php开发资料 php开发自学 匿名函数

抱歉,评论功能暂时关闭!