這篇文章介紹的內容是關於php內建函數使用compact() ,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
今天在使用tpshop時發現一個的php內建函數,叫做compact(),該函數建立一個由參數所帶變數組成的陣列。如果參數中存在數組,則該數組中變數的值也會被取得。
這樣可以減少點程式碼量。例如
/** * 获取购物车的价格详情 * @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內建函數使用 compact()的詳細內容。更多資訊請關注PHP中文網其他相關文章!