<?php function re_array($arr){ $arr2 = array_filter($arr); $ret = Array(); foreach($arr2 as $n){ $ret[] = $n; } return $ret; } ?>