删除数组中的空值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除数组中的空值相关的知识,希望对你有一定的参考价值。
remove all nulls values in an array
/* * remove null value from array * @param: array $array the array you will be remove the null value * @param: boolean $lessKeys less the keys of array * @return: array the new array */ function array_remove_null($array,$lessKeys = true){ try{ foreach($array as $key => $value){ $NewArray[$key] = $value; }elseif($value){ $NewArray[] = $value; } } return $NewArray; }else{ throw new Exception('array_remove_null() expects parameter 2 to be boolean, ' . gettype( $lessKeys ) . ' given', E_USER_WARNING ); } }else{ throw new Exception('array_remove_null() expects parameter 1 to be array, ' . gettype( $array ) . ' given', E_USER_WARNING ); } }catch(Exception $e){ } }
以上是关于删除数组中的空值的主要内容,如果未能解决你的问题,请参考以下文章