douqiaolong0528 2013-07-27 17:28
浏览 18
已采纳

处理会话购物车中的项目[关闭]

I am building a website with a basic shopping cart function. The following line of code lists each of the potential 6 items in the list and I have a function called listCart() which gets a total number of items (again maximum 6) in the cart.

<?php (print_r($_SESSION['cart']))?>

I want to be able to iterate through each element in the cart as they are ID's that refer to a database so for example I want:

for (each element in the cart){ get the image associated with the id get the name associated with the id add a delete from cart for each id }

Could someone tell me a way of being able to work with each cart element in turn. I'm OK with the get image/get name/delete from cart aspects but have no idea how to loop through a session variable in php.

Thank you

  • 写回答

1条回答 默认 最新

  • doulei8475 2013-07-27 17:46
    关注

    Without any special checks, to iterate through the cart items the loop would go like:

    foreach($_SESSION['cart'] as $cartId) {
            // do something with the $cartId and so on
        }
    

    * UPDATE *

    If however is a string (as you stated in the comment) you need to explode it first to an array like that:

    // if it is like "4,4,4,4,4,4" and not an array
    $array = explode(',', $_SESSION['cart']);
    foreach($array as $cartId) {
        // do something with the $cartId and so on
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法