删除数组中空的元素
时间:2010-02-04 来源:xhq6632
<?php
/*
* Author:xhq
* Email:[email protected]
* Oicq:119948717
*/ //删除数组中空的元素
function array_remove_empty(&$arr, $trim = true){
foreach ($arr as $key => $value){
if (is_array($value)){
array_remove_empty($arr[$key]);
} else{
$value = trim($value);
if ($value == ''){
unset($arr[$key]);
} elseif ($trim){
$arr[$key] = $value;
}
}
}
}
?>
/*
* Author:xhq
* Email:[email protected]
* Oicq:119948717
*/ //删除数组中空的元素
function array_remove_empty(&$arr, $trim = true){
foreach ($arr as $key => $value){
if (is_array($value)){
array_remove_empty($arr[$key]);
} else{
$value = trim($value);
if ($value == ''){
unset($arr[$key]);
} elseif ($trim){
$arr[$key] = $value;
}
}
}
}
?>
相关阅读 更多 +