码迷,mamicode.com
首页 > 其他好文 > 详细

【ecshop】调用购物车商品数量

时间:2017-08-09 18:04:55      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:ber   get   amount   sql   sum   sprintf   _id   使用   lob   

1 打开 includes/lib_insert.php 在最后位置添加如下代码:

 
/**
* 调用购物车商品数目
*/
function insert_cart_mes_num()
{
    $sql = ‘SELECT SUM(goods_number) AS number, SUM(goods_price * goods_number) AS amount‘ .
           ‘ FROM ‘ . $GLOBALS[‘ecs‘]->table(‘cart‘) .
           " WHERE session_id = ‘" . SESS_ID . "‘ AND rec_type = ‘" . CART_GENERAL_GOODS . "‘";
    $row = $GLOBALS[‘db‘]->GetRow($sql);
    if ($row)
    {
        $number = intval($row[‘number‘]);
        $amount = floatval($row[‘amount‘]);
    }
    else
    {
        $number = 0;
        $amount = 0;
    }
    $str = sprintf($number, price_format($amount, false));
    return $str;
}

 

2  在模板页使用   {insert name=‘cart_mes_num‘}    调用即可

 

【ecshop】调用购物车商品数量

标签:ber   get   amount   sql   sum   sprintf   _id   使用   lob   

原文地址:http://www.cnblogs.com/richerdyoung/p/7326625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!