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
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 hexo+github部署博客
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了
  • ¥100 H5网页如何调用微信扫一扫功能?