2016-05-10 5 views
0

を忘れて:クリックボタン削除(X)を、セッションはアレイを削除します[0]とSession::push('product', $array);ただ、まだ配列[1]

"product" => array:1 [▼ 
    0 => array:5 [▼ 
     "id" => "9" 
     "name" => "Điện thoại Samsung Galaxy A5 2016" 
     "price" => "888888990" 
     "picture" => "16046_315945335227228_2087086595407127217_n.jpg" 
     "qty" => "1" 
    ] 
    1 => array:5 [▼ 
     "id" => "10" 
     "name" => "Điện thoại Samsung Galaxy A5 2016" 
     "price" => "888888990" 
     "picture" => "16046_315945335227228_2087086595407127217_n.jpg" 
     "qty" => "1" 
    ] 
    ] 

答えて

0
<?php 

// Get the product array 
$product = Session::get('product'); 

// Unset the first index (or provide an index) 
unset($product[0]); 

// Overwrite the product session 
Session::put('product', $product); 
+0

ありがとうございました^^ –

+0

問題ありません。それがあなたの質問に答えた場合は受け入れとしてマークしてください:) – Chris

関連する問題