• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

php内置函数使用 compact()

php 搞代码 4年前 (2022-01-22) 32次浏览 已收录 0个评论

这篇文章介绍的内容是关于php内置函数使用 compact() ,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

今天在使用tpshop时发现一个的php内置函数,叫compact(),该函数创建一个由参数所带变量组成的数组。如果参数中存在数组,!本文来源gaodai#ma#com搞*!代#%^码网5

搞gaodaima代码

该数组中变量的值也会被获取。

这样可以减少点代码量。比如

    /**     * 获取购物车的价格详情     * @param $cartList|购物车列表     * @return array     */    public function getCartPriceInfo($cartList = null) {        $total_fee = $goods_fee = $goods_num = 0; //初始化数据。商品总额/节约金额/商品总共数量        if ($cartList) {            foreach ($cartList as $cartKey => $cartItem) {                $total_fee += $cartItem['goods_fee'];                $goods_fee += $cartItem['cut_fee'];                $goods_num += $cartItem['goods_num'];            }        }        $result = array(            'total_fee' => $total_fee,            'goods_fee' => $goods_fee,            'goods_num' => $goods_num,        );        return $result;    }

改成这样,代码简洁许多。

    /**     * 获取购物车的价格详情     * @param $cartList|购物车列表     * @return array     */    public function getCartPriceInfo($cartList = null){        $total_fee = $goods_fee = $goods_num = 0;//初始化数据。商品总额/节约金额/商品总共数量        if($cartList){            foreach ($cartList as $cartKey => $cartItem) {                $total_fee += $cartItem['goods_fee'];                $goods_fee += $cartItem['cut_fee'];                $goods_num += $cartItem['goods_num'];            }        }        return compact('total_fee', 'goods_fee', 'goods_num');    }

相关推荐:

如何运用PHP内置函数fgets()读取指针文件详解

以上就是php内置函数使用 compact() 的详细内容,更多请关注搞代码gaodaima其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php内置函数使用 compact()

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址