移除陣列中的空白字元元素
複製程式碼 程式碼如下:
$str1_array=array('本站','','http://www.
$str1_array=array('本站','','http://www.jb51.net',jb51.net', '','1654','');
$str1_array=array_filter($str1_array);
print_r($str1_array);
?>
Array ( [0] => 本站[2] => http://www.jb51.net
[4] => 1654)
以上就介紹了intentfilter php array_filter除去陣列中的空字元元素,包含了intentfilter方面的內容,希望對PHP教學有興趣的朋友有幫助。