본문 바로가기

PHP

PHP 배열 빈값 제거


 

foreach($array as $a=>$b){

if ( $b=='' ){

               unset($array[$a]);

}

}

$array = array_values($array);