-1

我没有得到 PHP 中二维数组的概念。我正在尝试实现一个购物车系统,其中数组 Session 变量存储 productid 及其数量。对于每个新条目,如果它存在,它的数量应该增加,或者如果它不存在,那么应该添加一个新的 id。这是我的初始代码。

function cart_increment_ajax($data, $qtt) {
    $_SESSION['count']+=$qtt;
    set_cart( $data );
    echo $_SESSION['count'];
}

function initialise_cart( ) {
        $_SESSION['cart'] =array( );
        $_SESSION['totalprice'] = 0;
}

function set_cart( $pid )  {
                    if(!isset($_SESSION['cart'])) {
        initialise_cart( );
                     }
        //else if( int $_SESSION['cart'] pid exists increment count ))
                    else
                    //     ($_SESSION['cart'] add new pid.

}

我没有得到如何通过多维关联数组来实现注释行?

4

2 回答 2

1

会话中的多数组的一个小型快速 n 脏示例保持购物车

<?php

function add_to_cart($product_id,$count)
{
    // no need for global $_SESSION is superglobal
    // init session variable cart
    if (!isset($_SESSION['cart']))
        $_SESSION['cart'] = array();
    // check if product exists
    if (!isset($_SESSION['cart'][$product_id]))
        $_SESSION['cart'][$product_id]=$count;
    else
        $_SESSION['cart'][$product_id]+=$count;
}

// add some foos and a bar
add_to_cart('foo',2);
add_to_cart('foo',1);
add_to_cart('bar',1);

print_r($_SESSION['cart']);
?>

这将产生

Array
(
    [foo] => 3
    [bar] => 1
)

高温高压

于 2012-10-26T13:25:07.893 回答
-1

使用产品 ID 作为数组中的索引,然后使用 ++ 简单地递增它。

$_SESSION['cart'][$pid]++;
于 2012-10-26T13:25:29.297 回答