如何使用特定位置而不是键或值来消除数组asocc中的特定元素。谢谢:我想删除我的第3个位置数组。如果我不知道它的关键或价值。
[
{
item_number: "1",
total: 1,
OptionName: "12 Inches",
ItemExtraName: null
},
{
item_number: "4",
total: 3,
OptionName: "12 Inches",
ItemExtraName: null
},
{
item_number: "4",
total: 1,
OptionName: "14 Inches",
ItemExtraName: [
"Extra Mushroom",
"Extra Pepperoni"
]
}
]
答案 0 :(得分:1)
使用unset()。例如:
unset($array[2]);
答案 1 :(得分:-1)
谢谢,但dosnt工作
public function remove($element) {
$productos = Session()->get('prod');
unset($productos[$element]);
return redirect('/showcarrito');
}