1. 程式人生 > >去掉陣列中的空值 php

去掉陣列中的空值 php

$str1_array=array('指令碼之家','','http://www.jb51.net','','1654',''); 
$str1_array=array_filter($str1_array); 
print_r($str1_array); 
echo implode(",",$str1_array);

出處:http://www.jb51.net/article/28871.htm