关于匿名函数的使用,购物车中计算销售税的应用

Posted 逝火

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于匿名函数的使用,购物车中计算销售税的应用相关的知识,希望对你有一定的参考价值。

php匿名函数又叫闭包函数,可以起到精简代码的作用,下面是购物车中的应用:

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 getTotal($tax)
    {
        $total = 0.00;
        $callback = function ($quantity, $product) use ($tax, &$total)
        {
            $priceItem = constant(__CLASS__."::PRICE_".strtoupper($product));
            $total += ($priceItem*$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);
print_r($my_cart->getTotal(0.05));

又一次长知识了,666!

以上是关于关于匿名函数的使用,购物车中计算销售税的应用的主要内容,如果未能解决你的问题,请参考以下文章

关于C++中的匿名函数

代码片--练习匿名内部类

在 WooCommerce 购物车中显示所有交叉销售商品

计算机毕业设计springboot+vue+elementUI在线漫画周边销售购物交流系统

PHP闭包 function() use(){}

一片大好效果怎么样