2016-06-16 19 views
0

連想配列の特定のキーの値をどのように増やしますか?連想配列キーの値を増やす

私は以下を行っていますが、うまくいかないようです。 ありがとうございます。

$_SESSION['cart_items'] = ["a" => 1, "b" => 1]; 
$product_id can be a or b. 
    foreach ($_SESSION['cart_items'] AS $id => $quantity){ 
     if ($id == $product_id){ 
     $_SESSION[$product_id][$quantity] +=1; 

     } 
    } 
+0

'$ _SESSION [$番号] + + ' – zerkms

答えて

1

を行うさてあなたは、コードをテストすることができます。

<?php 

// start the session and avoid notice 
@session_start(); 

// if not set session for cart_items, set first 
if (! isset($_SESSION['cart_items'])) { 
    // this is session data with product details 
    $_SESSION['cart_items'] = array("a" => 1, "b" => 1); 
} 

// assuming if product is 'a' 
$product_id = $_GET['product_name']; 

// check if product 'a' exist in SESSION as KEY then add +1 

if (isset($_SESSION['cart_items'][$product_id])) { 
    $_SESSION['cart_items'][$product_id]++; 
} 

// debug value of SESSION 
echo '<pre>', print_r($_SESSION, true), '</pre>'; 


// run this code after save in file e.g. test.php?product_name=a or text.php?product_name=b 
?> 
2

ちょうど

$_SESSION['cart_items'][$product_id]++; 
+0

動作しません。値は2だけインクリメントされます。 – radioactive

+0

他に何も実行していませんか? $ var ++は1ずつ増やす – Pipe

+0

うん。出来た。間違いは私のものでした。 – radioactive

0

それとも、も行うことができます。

$_SESSION[$product_id] = parseInt($quantity) + 1; 
関連する問題