<?php
$str1_array=array('电影','','http://www','','1654','');
$str1_array=array_filter($str1_array);
print_r($str1_array);
?>
显示结果:
Array
(
[0] => 电影
[2] => http://www
[4] => 1654
)
转载于:https://www.cnblogs.com/skillCoding/archive/2012/02/03/2336682.html