方法1:php
//去除值爲"Cat"的元素
html
$a
=
array
(
"a"
=>
"Dog"
,
"b"
=>
"Cat"
,
"c"
=>
"Horse"
);
print_r(
$a
);
unset(
$a
[
array_search
(
"Cat"
,
$a
)]);
//array_search("Cat",$a)按元素值返回鍵名。去除後保持索引
print_r(
$a
);
方法2:
$productlist = Model_Member_Order_Extend::get_commission_product();、、二維數組,若是二維數組裏面的一維數組id是204或者207 註銷掉這個數組的key,刪除這個數組
foreach($productlist as $k=>$v){
if($v['id'] == "204" || $v['id'] == "207"){
unset($productlist[$k]);
}
} 數組