帝国CMS怎么调用购物车商品数量

aaa

帝国cms模板调用购物车商品数量和总价的方法,一起来看看吧:

       代码如下:

<?php
/**
* 根据Cookie值对购物车商品数量和总价格调用
*/
require("class/connect.php");

$totalProducts = 0; //购物车商品总数
$totalPrice = 0.0; //购物车商品总价

// |77,243|2!|77,237|3!
$cookieString = explode("!",$_COOKIE['zeuqcmybuycar']);

try{
//遍历商品
for($i = 0; $i < count($cookieString)-1; $i++){
$priceAndNumber = explode("|",$cookieString[$i]);
$thisNum = $priceAndNumber[2]; //当前商品的数量
$thisId = explode(",",$priceAndNumber[1]);
$thisId = $thisId[1]; //当前商品的ID
$thisPrice = this_price($thisId); //当前商品价格

$totalPrice += $thisPrice * $thisNum; //购物车商品总价累加
$totalProducts += $thisNum; //购物车商品总数累加
}

echo "document.write("".displayResultJs($totalPrice,$totalProducts)."")"; //显示结果Js形式输出

}catch (Exception $e){
echo $e->getMessage();
}


/**计算商品价格*/
function this_price($id){
$connect = connectDB();
$query = "select price from phome_ecms_news where id = ".$id;
if(!$connect){
throw new Exception("数据库链接不成功,请检查!");
}
if(!$result = $connect -> query($query)){
throw new Exception("查询失败!");
}
$row = $result -> fetch_assoc();

return $row['price'];
}

/**链接数据库*/
function connectDB(){
global $phome_db_server,$phome_db_username,$phome_db_password,$phome_db_dbname,$phome_db_char;
$connect = new mysqli($phome_db_server,$phome_db_username,$phome_db_password,$phome_db_dbname);
$connect -> query("set Names ".$phome_db_char);
return $connect;
}

/**显示结果Js*/
function displayResultJs($totalPrice,$totalProducts){
return "<div class='car'>您的购物车中有 {$totalProducts} 件商品,总计金额 ¥{$totalPrice}元。<br />点击查看 <a href='/e/ShopSys/buycar/'>结算&gt;&gt;</a> </div>";
}
?>

本文标题:帝国CMS怎么调用购物车商品数量

本文链接:https://www.kaifatu.com/article/385.html

相关文章

帝国cms灵动标签序号风格

帝国cms灵动标签序号风格…

Kaifatu 帝国cms教程
2021-03-14 446

利用帝国cms做网站如何防止采集?

利用帝国cms做网站如何防止采集?一、反采集功能使用说明:1.开启防采集功能:“系统”-》“系统设置”-》“参数设置”-》“信息设置” -》“开启防采集”。…

Kaifatu 帝国cms教程
2021-02-14 610

帝国cms用户自定义函数取昨天发表的文章数

用户自己定义函数添加方法:1.函数内容代码:<?phpfunction user_ztotal($classid){global $empire,$class_r,$dbtbpre;$beginYesterday = mktime(0, 0, 0, date("m"), date("d"…

Kaifatu 帝国cms教程
2021-07-17 366

帝国cms搜索模板制作教程详解(图文)

搜索模板搜索模板是指搜索结果页面使用的模板。(制作方法与列表模板相同)…

Kaifatu 帝国cms教程
2021-02-07 305

帝国cms中留言板表单模板制作详解(图文)

留言板表单模板…

Kaifatu 帝国cms教程
2021-01-31 652
发表评论
暂无评论