PHP怎么删除数组元素?
巴扎黑
巴扎黑 2016-11-10 16:32:36
0
1
797

就是把键和值都移除..

foreach($arr as $k => $v )
{    if($v>10)
        删除arr[$k]
}


巴扎黑
巴扎黑

reply all(1)
phpcn_u29

$arr = [    'test' => 'test',    'test1' => 'test1'];unset($arr['test'])

print_r($arr);#####输出[    'test1' => 'test1']

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template