php可以通过unset删除数组中的值
举例 如果如果没有key的数组
$forasp = array(1,6,9);
var_export($forasp);
unset($forasp[0]);
var_export($forasp);
//输出结果
array (
0 => 1,
1 => 6,
2 => 9,
)array (
1 => 6,
2 => 9,
)
如果有key的数组
$forasp = array("site"=>"forasp","name"=>"网站名");
var_export($forasp);
unset($forasp['site']);
var_export($forasp);
array (
'site' => 'forasp',
'name' => '网站名',
)array (
'name' => '网站名',
)
这样就可以通过php unset 删除数组中的某个值
更多信息请查看IT技术专栏