배열에서 빈 문자 요소 제거
코드 복사 코드는 다음과 같습니다.
$ str1_array=array ('이 사이트','','http://www.jb51.net','','1654','')
$str1_array=array_filter($str1_array)
print_r($ str1_array);
?>
코드 복사 코드는 다음과 같습니다.
배열
(
[0] => 이 사이트
[2] => http://www.jb51.net
[4] = >1654
)
위에서는 Intentfilter의 내용을 포함하여 배열의 빈 문자 요소를 제거하기 위해 Intentfilter php array_filter를 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.